copyWith method
WalletCreateRequest
copyWith({
- String? clientId,
- String? secret,
- WalletISOCurrencyCode? isoCurrencyCode,
Implementation
WalletCreateRequest copyWith(
{String? clientId,
String? secret,
enums.WalletISOCurrencyCode? isoCurrencyCode}) {
return WalletCreateRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
isoCurrencyCode: isoCurrencyCode ?? this.isoCurrencyCode);
}