toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final create = this.create;
  final remove = this.remove;
  final update = this.update;
  final updateMask = this.updateMask;
  return {
    'create': ?create,
    'remove': ?remove,
    'update': ?update,
    'updateMask': ?updateMask,
  };
}