toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final displayName = this.displayName;
  final endpointMatchers = this.endpointMatchers;
  final name = this.name;
  final schema = this.schema;
  final updateTime = this.updateTime;
  final upstreams = this.upstreams;
  return {
    'createTime': ?createTime,
    'displayName': ?displayName,
    'endpointMatchers': ?endpointMatchers,
    'name': ?name,
    'schema': ?schema,
    'updateTime': ?updateTime,
    'upstreams': ?upstreams,
  };
}