AuthMFAEnrollResponse constructor

const AuthMFAEnrollResponse({
  1. required String id,
  2. required FactorType type,
  3. required TOTPEnrollment totp,
})

Implementation

const AuthMFAEnrollResponse({
  required this.id,
  required this.type,
  required this.totp,
});