copyWith method

TransferFailure copyWith({
  1. String? achReturnCode,
  2. String? description,
})

Implementation

TransferFailure copyWith({String? achReturnCode, String? description}) {
  return TransferFailure(
      achReturnCode: achReturnCode ?? this.achReturnCode,
      description: description ?? this.description);
}