AssistComposer constructor
const
AssistComposer({
- TextStyle? textStyle,
- int minLines = 1,
- int maxLines = 6,
- InputDecoration? decoration = const InputDecoration(),
- EdgeInsetsGeometry padding = const EdgeInsets.only(top: 24.0),
Creates a AssistComposer with the given textStyle
, line limits,
decoration
, and padding
.
Implementation
const AssistComposer({
this.textStyle,
this.minLines = 1,
this.maxLines = 6,
this.decoration = const InputDecoration(),
this.padding = const EdgeInsets.only(top: 24.0),
}) : builder = null;