copyWith method

Implementation

WebApiModulesUtilitiesInventoryTransferUtilityTransferInventoryResponse
copyWith({int? status, bool? success, String? msg}) {
  return WebApiModulesUtilitiesInventoryTransferUtilityTransferInventoryResponse(
    status: status ?? this.status,
    success: success ?? this.success,
    msg: msg ?? this.msg,
  );
}