toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final apiSource = this.apiSource;
  final attributes = this.attributes;
  final operations = this.operations;
  final quota = this.quota;
  return {
    'apiSource': ?apiSource,
    'attributes': ?attributes,
    'operations': ?operations,
    'quota': ?quota,
  };
}