LoginModel constructor

LoginModel({
  1. required String retailerid,
  2. required String retailername,
  3. required String address,
  4. required String retailerType,
  5. required String gstinnumber,
  6. dynamic tax,
  7. required String clientId,
  8. dynamic shopFrontPhoto,
  9. required int pendingClaimCount,
  10. required bool isOcrEnable,
  11. required String mobileno,
  12. required bool isOtpEnable,
  13. required String role,
})

Implementation

LoginModel({
  required this.retailerid,
  required this.retailername,
  required this.address,
  required this.retailerType,
  required this.gstinnumber,
  this.tax,
  required this.clientId,
  this.shopFrontPhoto,
  required this.pendingClaimCount,
  required this.isOcrEnable,
  required this.mobileno,
  required this.isOtpEnable,
  required this.role,
});