KeyVerification constructor

KeyVerification({
  1. Int64? nonce,
  2. List<int>? hash1,
  3. List<int>? hash2,
})

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;
}