toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final action = this.action;
  final createTime = this.createTime;
  final customProvider = this.customProvider;
  final description = this.description;
  final httpRules = this.httpRules;
  final labels = this.labels;
  final name = this.name;
  final target = this.target;
  final updateTime = this.updateTime;
  return {
    'action': ?action,
    'createTime': ?createTime,
    'customProvider': ?customProvider,
    'description': ?description,
    'httpRules': ?httpRules,
    'labels': ?labels,
    'name': ?name,
    'target': ?target,
    'updateTime': ?updateTime,
  };
}