copyWith method

WalletGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? walletId,
})

Implementation

WalletGetRequest copyWith(
    {String? clientId, String? secret, String? walletId}) {
  return WalletGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      walletId: walletId ?? this.walletId);
}