AccountUpdateContract constructor
AccountUpdateContract({
- required TronAddress ownerAddress,
- required List<
int> accountName,
Factory method to create a new AccountUpdateContract instance with specified parameters.
Implementation
AccountUpdateContract({
required this.ownerAddress,
required List<int> accountName,
}) : accountName = BytesUtils.toBytes(accountName, unmodifiable: true);