evaluate method

Future evaluate(
  1. String script, {
  2. List? properties = null,
  3. List? args = null,
})

Implementation

Future<dynamic> evaluate(
  String script, {
  List<dynamic>? properties = null,
  List<dynamic>? args = null,
}) async {
  var Online = await this;
  return Online.evaluate(
    script,
    properties: properties,
    args: args,
  );
}