copyWithWrapped method
TransferAuthorizationCreateResponse
copyWithWrapped({
- Wrapped<
TransferAuthorization> ? authorization, - Wrapped<
String> ? requestId,
Implementation
TransferAuthorizationCreateResponse copyWithWrapped(
{Wrapped<TransferAuthorization>? authorization,
Wrapped<String>? requestId}) {
return TransferAuthorizationCreateResponse(
authorization:
(authorization != null ? authorization.value : this.authorization),
requestId: (requestId != null ? requestId.value : this.requestId));
}