execute method

Future<void> execute(
  1. ParamsOfExecute params
)

Calls debot engine referenced by debot handle to execute input action. Calls Debot Browser Callbacks if needed.

Remarks

Chain of actions can be executed if input action generates a list of subactions.

Implementation

Future<void> execute(ParamsOfExecute params) async {
  await _tonCore.request('debot.execute', params.toString());
}