AccountUpdateContract constructor

AccountUpdateContract({
  1. required TronAddress ownerAddress,
  2. 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);