toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final gcpServiceAccountEmail = this.gcpServiceAccountEmail;
  final policyDir = this.policyDir;
  final secretType = this.secretType;
  final syncRepo = this.syncRepo;
  final syncWaitSecs = this.syncWaitSecs;
  return {
    'gcpServiceAccountEmail': ?gcpServiceAccountEmail,
    'policyDir': ?policyDir,
    'secretType': ?secretType,
    'syncRepo': ?syncRepo,
    'syncWaitSecs': ?syncWaitSecs,
  };
}