dartKeywords top-level property

Set<String> dartKeywords
getter/setter pair

Implementation

Set<String> dartKeywords = {
  'abstract', 'else', 'import', 'show',
  'as', 'enum', 'in', 'static',
  'assert', 'export', 'interface', 'super',
  'async', 'extends', 'is', 'switch',
  'await', 'extension', 'late', 'sync',
  'base', 'external', 'library', 'this',
  'break', 'factory', 'mixin', 'throw',
  'case', 'false', 'new', 'true',
  'catch', 'final', 'null', 'try',
  'class', 'on', 'typedef',
  'const', 'finally', 'operator', 'var',
  'continue', 'for', 'part', 'void',
  'covariant', 'Function', 'required', 'when',
  'default', 'get', 'rethrow', 'while',
  'deferred', 'hide', 'return', 'with',
  'do', 'if', 'sealed', 'yield',
  'dynamic', 'implements', 'set',
  'Colors',
};