copyWith method

TransectionParameter copyWith({
  1. String? clientId,
  2. String? processData,
  3. String? processType,
  4. String? transactionNumber,
})

Implementation

TransectionParameter copyWith({
  String? clientId,
  String? processData,
  String? processType,
  String? transactionNumber,
}) {
  return TransectionParameter(
    clientId: clientId ?? this.clientId,
    processData: processData ?? this.processData,
    processType: processType ?? this.processType,
    transactionNumber: transactionNumber ?? this.transactionNumber,
  );
}