EditorOptions constructor

EditorOptions({
  1. Color backgroundColor = const Color.fromRGBO(0x2a, 0x2a, 0x40, 1),
  2. EditorRegionOptions? regionOptions,
  3. Color linebarColor = const Color.fromRGBO(0x3b, 0x3b, 0x4f, 1),
  4. Color linebarTextColor = Colors.white,
  5. bool showLinebar = true,
  6. bool takeFullHeight = true,
  7. bool isEditable = true,
  8. String? fontFamily,
})

Implementation

EditorOptions({
  this.backgroundColor = const Color.fromRGBO(0x2a, 0x2a, 0x40, 1),
  this.regionOptions,
  this.linebarColor = const Color.fromRGBO(0x3b, 0x3b, 0x4f, 1),
  this.linebarTextColor = Colors.white,
  this.showLinebar = true,
  this.takeFullHeight = true,
  this.isEditable = true,
  this.fontFamily,
});