BlockComponentConfiguration constructor

const BlockComponentConfiguration({
  1. EdgeInsets padding(
    1. Node node
    ) = _padding,
  2. EdgeInsets indentPadding(
    1. Node node,
    2. TextDirection textDirection
    ) = _indentPadding,
  3. String placeholderText(
    1. Node node
    ) = _placeholderText,
  4. TextStyle textStyle(
    1. Node node
    ) = _textStyle,
  5. TextStyle placeholderTextStyle(
    1. Node node
    ) = _placeholderTextStyle,
})

Implementation

const BlockComponentConfiguration({
  this.padding = _padding,
  this.indentPadding = _indentPadding,
  this.placeholderText = _placeholderText,
  this.textStyle = _textStyle,
  this.placeholderTextStyle = _placeholderTextStyle,
});