copyWithWrapped method
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));
}