toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final gateway = this.gateway;
  final gatewayType = this.gatewayType;
  final resourceUri = this.resourceUri;
  final sourceProject = this.sourceProject;
  return {
    'displayName': ?displayName,
    'gateway': ?gateway,
    'gatewayType': ?gatewayType,
    'resourceUri': ?resourceUri,
    'sourceProject': ?sourceProject,
  };
}