toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final collection = this.collection;
  final others = this.others;
  final singleResource = this.singleResource;
  return {
    'collection': ?collection,
    'others': ?others,
    'singleResource': ?singleResource,
  };
}