CheckSignatureRequest constructor

CheckSignatureRequest({
  1. String? uuid,
  2. String? signature,
  3. List<int>? message,
  4. String? currency,
  5. WalletType? walletType,
})

Implementation

factory CheckSignatureRequest({
  $core.String? uuid,
  $core.String? signature,
  $core.List<$core.int>? message,
  $core.String? currency,
  WalletType? walletType,
}) {
  final $result = create();
  if (uuid != null) {
    $result.uuid = uuid;
  }
  if (signature != null) {
    $result.signature = signature;
  }
  if (message != null) {
    $result.message = message;
  }
  if (currency != null) {
    $result.currency = currency;
  }
  if (walletType != null) {
    $result.walletType = walletType;
  }
  return $result;
}