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