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