copyWithWrapped method

TransferFailure copyWithWrapped({
  1. Wrapped<String?>? achReturnCode,
  2. Wrapped<String?>? description,
})

Implementation

TransferFailure copyWithWrapped(
    {Wrapped<String?>? achReturnCode, Wrapped<String?>? description}) {
  return TransferFailure(
      achReturnCode:
          (achReturnCode != null ? achReturnCode.value : this.achReturnCode),
      description:
          (description != null ? description.value : this.description));
}