CheckSignatureRequest constructor
CheckSignatureRequest({})
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;
}