isSqliteKeyword function
Returns whether s
is an sql keyword by comparing it to the
sqliteKeywords.
Implementation
bool isSqliteKeyword(String s) => sqliteKeywords.contains(s.toUpperCase());
Returns whether s
is an sql keyword by comparing it to the
sqliteKeywords.
bool isSqliteKeyword(String s) => sqliteKeywords.contains(s.toUpperCase());