AccountId constructor
AccountId({
- List<
int> ? name, - required TronAddress address,
Factory method to create an instance of AccountId with an unmodifiable list for the 'name' field.
Implementation
AccountId({List<int>? name, required this.address})
: name = BytesUtils.tryToBytes(name, unmodifiable: true);