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