OtpSentResponseData constructor

OtpSentResponseData({
  1. required int interval,
  2. required bool otpRequired,
  3. String? token,
  4. required String userType,
})

Implementation

OtpSentResponseData({
  required this.interval,
  required this.otpRequired,
  this.token,
  required this.userType,
});