toJson method

Map<String, dynamic> toJson()

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,
  };
}