copyWith method
Implementation
WebApiModulesInventoryInventoryReceiptCompleteReceiptResponse copyWith(
{int? status, String? message}) {
return WebApiModulesInventoryInventoryReceiptCompleteReceiptResponse(
status: status ?? this.status, message: message ?? this.message);
}