txId property

  1. @TagNumber.new(3)
String get txId

For direct sign in Tron, we just have to sign the txId returned by the DApp json payload. TODO: This field can be removed in the future, as we can use raw_json.txID instead.

Implementation

@$pb.TagNumber(3)
$core.String get txId => $_getSZ(2);
  1. @TagNumber.new(3)
set txId (String v)

Implementation

@$pb.TagNumber(3)
set txId($core.String v) {
  $_setString(2, v);
}