MmSwitchAccountTypeRequest constructor

MmSwitchAccountTypeRequest({
  1. required String currentService,
  2. required String newService,
  3. String? email,
  4. String? password,
  5. String? mfaCode,
  6. String? ldapId,
})

Returns a new MmSwitchAccountTypeRequest instance.

Implementation

MmSwitchAccountTypeRequest({
  required this.currentService,
  required this.newService,
  this.email,
  this.password,
  this.mfaCode,
  this.ldapId,
});