TransactionContract constructor
TransactionContract({})
Create a new TransactionContract instance with specified parameters.
Implementation
TransactionContract(
{required this.type,
required this.parameter,
List<int>? provider,
List<int>? contractName,
this.permissionId})
: provider = BytesUtils.tryToBytes(provider, unmodifiable: true),
contractName = BytesUtils.tryToBytes(contractName, unmodifiable: true);