MrkdownEditingField constructor
- {Key key,
- @required TextEditingController controller,
- Function onChange,
- int maxLines = 8}
Create a MrkdownEditingField passing key
, controller, onChange
and maxLines.
Implementation
const MrkdownEditingField({
Key key,
@required this.controller,
this.onChange,
this.maxLines = 8,
}) : assert(controller != null),
super(key: key);