SyntaxTheme constructor

const SyntaxTheme({
  1. required Color keyword,
  2. required Color string,
  3. required Color comment,
  4. required Color number,
  5. required Color type,
  6. required Color function_,
  7. required Color variable,
  8. required Color operator_,
  9. required Color punctuation,
})

Implementation

const SyntaxTheme({
  required this.keyword,
  required this.string,
  required this.comment,
  required this.number,
  required this.type,
  required this.function_,
  required this.variable,
  required this.operator_,
  required this.punctuation,
});