toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final name = this.name;
final serviceAccount = this.serviceAccount;
final type = this.type;
return {'name': ?name, 'serviceAccount': ?serviceAccount, 'type': ?type};
}