commandName method

String commandName(
  1. String name
)

How to run the live command name from where this runner is used: name inside metro live, otherwise metro live:name.

Implementation

String commandName(String name) =>
    session == null ? 'metro live:$name' : name;