EditorOptions constructor
EditorOptions({
- Color backgroundColor = const Color.fromRGBO(0x2a, 0x2a, 0x40, 1),
- EditorRegionOptions? regionOptions,
- Color linebarColor = const Color.fromRGBO(0x3b, 0x3b, 0x4f, 1),
- Color linebarTextColor = Colors.white,
- bool showLinebar = true,
- bool takeFullHeight = true,
- bool isEditable = true,
- 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,
});