ParamsOfRunTvm constructor
Implementation
ParamsOfRunTvm({
@required String message,
@required String account,
ExecutionOptions execution_options,
Abi abi,
}) {
_message = ArgumentError.checkNotNull(message, 'ParamsOfRunTvm message');
_account = ArgumentError.checkNotNull(account, 'ParamsOfRunTvm account');
_execution_options = execution_options;
_abi = abi;
}