copyWith method
Implementation
WebApiModulesInventoryInventorySearchInventorySearchGetTotalResponse
copyWith({
int? status,
bool? success,
String? msg,
double? totalQuantityInSession,
}) {
return WebApiModulesInventoryInventorySearchInventorySearchGetTotalResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
totalQuantityInSession:
totalQuantityInSession ?? this.totalQuantityInSession,
);
}