toJson method

Map<String, dynamic> toJson()

Implementation

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