copyWith method

TransferIntentGetFailureReason copyWith({
  1. String? errorType,
  2. String? errorCode,
  3. String? errorMessage,
})

Implementation

TransferIntentGetFailureReason copyWith(
    {String? errorType, String? errorCode, String? errorMessage}) {
  return TransferIntentGetFailureReason(
      errorType: errorType ?? this.errorType,
      errorCode: errorCode ?? this.errorCode,
      errorMessage: errorMessage ?? this.errorMessage);
}