toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customAccount = this.customAccount;
final googleAccount = this.googleAccount;
final iapCredential = this.iapCredential;
return {
'customAccount': ?customAccount,
'googleAccount': ?googleAccount,
'iapCredential': ?iapCredential,
};
}