toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final agentFramework = this.agentFramework;
  final classMethods = this.classMethods;
  final deploymentSpec = this.deploymentSpec;
  final effectiveIdentity = this.effectiveIdentity;
  final identityType = this.identityType;
  final packageSpec = this.packageSpec;
  final serviceAccount = this.serviceAccount;
  final sourceCodeSpec = this.sourceCodeSpec;
  return {
    'agentFramework': ?agentFramework,
    'classMethods': ?classMethods,
    'deploymentSpec': ?deploymentSpec,
    'effectiveIdentity': ?effectiveIdentity,
    'identityType': ?identityType,
    'packageSpec': ?packageSpec,
    'serviceAccount': ?serviceAccount,
    'sourceCodeSpec': ?sourceCodeSpec,
  };
}