publicKey property

  1. @TagNumber.new(2)
List<int> get publicKey

Public key of the signer (32 bytes). Used when transaction is going to be signed externally.

Implementation

@$pb.TagNumber(2)
$core.List<$core.int> get publicKey => $_getN(1);
  1. @TagNumber.new(2)
set publicKey (List<int> v)

Implementation

@$pb.TagNumber(2)
set publicKey($core.List<$core.int> v) {
  $_setBytes(1, v);
}