EditorOptions constructor

EditorOptions({
  1. Color editorBackgroundColor = const Color.fromRGBO(0x2a, 0x2a, 0x40, 1),
  2. Color linebarColor = const Color.fromRGBO(0x3b, 0x3b, 0x4f, 1),
  3. Color linebarTextColor = Colors.white,
  4. bool hasRegion = false,
  5. String? fontFamily,
})

Implementation

EditorOptions({
  this.editorBackgroundColor = const Color.fromRGBO(0x2a, 0x2a, 0x40, 1),
  this.linebarColor = const Color.fromRGBO(0x3b, 0x3b, 0x4f, 1),
  this.linebarTextColor = Colors.white,
  this.hasRegion = false,
  this.fontFamily,
});