isSqliteKeyword function

bool isSqliteKeyword(
  1. String s
)

Returns whether s is an sql keyword by comparing it to the sqliteKeywords.

Implementation

bool isSqliteKeyword(String s) => sqliteKeywords.contains(s.toUpperCase());