GetWalletsByEmailRequest constructor

GetWalletsByEmailRequest({
  1. String? email,
  2. String? currency,
})

Implementation

factory GetWalletsByEmailRequest({
  $core.String? email,
  $core.String? currency,
}) {
  final $result = create();
  if (email != null) {
    $result.email = email;
  }
  if (currency != null) {
    $result.currency = currency;
  }
  return $result;
}