toJson method

Map<String, dynamic> toJson()

Implementation

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