isImportLine function

bool isImportLine(
  1. String line
)

Implementation

bool isImportLine(String line) {
  return line.startsWith("import") ||
      line.startsWith("export") ||
      line.startsWith("part");
}