toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (accountId != null) 'accountId': accountId!,
      if (creationMs != null) 'creationMs': creationMs!,
      if (email != null) 'email': email!,
      if (emailVerified != null) 'emailVerified': emailVerified!,
      if (phoneNumber != null) 'phoneNumber': phoneNumber!,
      if (phoneVerified != null) 'phoneVerified': phoneVerified!,
    };