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