isLocalCommand method

bool isLocalCommand(
  1. String line
)

Whether line is a local command (begins with :).

Implementation

bool isLocalCommand(String line) => line.trimLeft().startsWith(':');