KeyVerification constructor
Implementation
factory KeyVerification({
$fixnum.Int64? nonce,
$core.List<$core.int>? hash1,
$core.List<$core.int>? hash2,
}) {
final result = create();
if (nonce != null) result.nonce = nonce;
if (hash1 != null) result.hash1 = hash1;
if (hash2 != null) result.hash2 = hash2;
return result;
}