copyWith method

Implementation

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