SetAccountIdContract constructor

SetAccountIdContract({
  1. required List<int> accountId,
  2. required TronAddress ownerAddress,
})

Factory method to create a new SetAccountIdContract instance with specified parameters.

Implementation

SetAccountIdContract({
  required List<int> accountId,
  required this.ownerAddress,
}) : accountId = BytesUtils.toBytes(accountId, unmodifiable: true);