toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final displayName = this.displayName;
  final idToken = this.idToken;
  final phoneVerificationInfo = this.phoneVerificationInfo;
  final tenantId = this.tenantId;
  final totpVerificationInfo = this.totpVerificationInfo;
  return {
    'displayName': ?displayName,
    'idToken': ?idToken,
    'phoneVerificationInfo': ?phoneVerificationInfo,
    'tenantId': ?tenantId,
    'totpVerificationInfo': ?totpVerificationInfo,
  };
}