copyWith method

WalletCreateRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. 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);
}