LoginBodyModel constructor
LoginBodyModel({})
Implementation
LoginBodyModel({
String? username,
String? password,
String? cusMobileno,
String? phoneOs,
String? phoneBrand,
String? deviceId,
String? phoneModel,}){
_username = username;
_password = password;
_cusMobileno = cusMobileno;
_phoneOs = phoneOs;
_phoneBrand = phoneBrand;
_deviceId = deviceId;
_phoneModel = phoneModel;
}