toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final domain = this.domain;
  final name = this.name;
  final peeringConfig = this.peeringConfig;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'domain': ?domain,
    'name': ?name,
    'peeringConfig': ?peeringConfig,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}