appendScript method

void appendScript(
  1. String script
)

Append a script to the queue This is useful to append a script to the queue and execute it on CrispView initState

Implementation

void appendScript(String script) {
  commands.add(script);
}