toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountId = this.accountId;
  final creationMs = this.creationMs;
  final email = this.email;
  final emailVerified = this.emailVerified;
  final phoneNumber = this.phoneNumber;
  final phoneVerified = this.phoneVerified;
  return {
    'accountId': ?accountId,
    'creationMs': ?creationMs,
    'email': ?email,
    'emailVerified': ?emailVerified,
    'phoneNumber': ?phoneNumber,
    'phoneVerified': ?phoneVerified,
  };
}