LoginModel constructor
LoginModel({
- required String retailerid,
- required String retailername,
- required String address,
- required String retailerType,
- required String gstinnumber,
- dynamic tax,
- required String clientId,
- dynamic shopFrontPhoto,
- required int pendingClaimCount,
- required bool isOcrEnable,
- required String mobileno,
- required bool isOtpEnable,
- 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,
});