M4eAuthOTPVerificationForm constructor

const M4eAuthOTPVerificationForm({@required String otpCode })

Implementation

const M4eAuthOTPVerificationForm({@required String otpCode})
    : assert(otpCode != null,
          'M4eAuthPhoneNumberForm [otpCode] should not be null'),
      this.otpCode = otpCode;