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