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