copyWithWrapped method

TransferIntentGetFailureReason copyWithWrapped({
  1. Wrapped<String?>? errorType,
  2. Wrapped<String?>? errorCode,
  3. Wrapped<String?>? errorMessage,
})

Implementation

TransferIntentGetFailureReason copyWithWrapped(
    {Wrapped<String?>? errorType,
    Wrapped<String?>? errorCode,
    Wrapped<String?>? errorMessage}) {
  return TransferIntentGetFailureReason(
      errorType: (errorType != null ? errorType.value : this.errorType),
      errorCode: (errorCode != null ? errorCode.value : this.errorCode),
      errorMessage:
          (errorMessage != null ? errorMessage.value : this.errorMessage));
}