LayoutSettingsIndent constructor

LayoutSettingsIndent({
  1. required bool applyChanges,
  2. required bool indentParagraph,
  3. required bool indentJustAfterFirstParagraph,
})

Builds indentation settings with explicit values.

Implementation

LayoutSettingsIndent({
  required this.applyChanges,
  required this.indentParagraph,
  required this.indentJustAfterFirstParagraph,
});