RichEditorOptions constructor

RichEditorOptions({
  1. Color? backgroundColor,
  2. Color? baseTextColor,
  3. EdgeInsets? padding,
  4. String? placeholder,
  5. String? baseFontFamily,
  6. BarPosition? barPosition,
  7. bool? enableVideo = true,
})

Implementation

RichEditorOptions({
  Color? backgroundColor,
  Color? baseTextColor,
  EdgeInsets? padding,
  String? placeholder,
  String? baseFontFamily,
  BarPosition? barPosition,
  bool? enableVideo = true,
}) {
  this.backgroundColor = backgroundColor;
  this.baseTextColor = baseTextColor;
  this.padding = padding;
  this.placeholder = placeholder;
  this.baseFontFamily = baseFontFamily;
  this.barPosition = barPosition;
  this.enableVideo = enableVideo;
}