PaymentSendOtpRequest constructor

PaymentSendOtpRequest({
  1. String? mobileNumber,
  2. String? orderId,
  3. String? password,
  4. String? otp,
  5. String? token,
})

Implementation

PaymentSendOtpRequest({
    String? mobileNumber,
    String? orderId,
    String? password,
    String? otp,
    String? token,}){
  _mobileNumber = mobileNumber;
  _orderId = orderId;
  _password = password;
  _otp = otp;
  _token = token;
}