toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final authorizationMode = this.authorizationMode;
  final authorizedClientResources = this.authorizedClientResources;
  final createTime = this.createTime;
  final description = this.description;
  final etag = this.etag;
  final labels = this.labels;
  final name = this.name;
  final targetResourceUri = this.targetResourceUri;
  final uid = this.uid;
  final updateTime = this.updateTime;
  return {
    'authorizationMode': ?authorizationMode,
    'authorizedClientResources': ?authorizedClientResources,
    'createTime': ?createTime,
    'description': ?description,
    'etag': ?etag,
    'labels': ?labels,
    'name': ?name,
    'targetResourceUri': ?targetResourceUri,
    'uid': ?uid,
    'updateTime': ?updateTime,
  };
}