PlainEditor constructor
- Key? key,
- bool isEditing = false,
- required String sdetails,
- TextInputType keyboardType = TextInputType.text,
- List<
TextInputFormatter> inputFormatters = const [],
Implementation
PlainEditor({
Key? key,
this.isEditing = false,
required this.sdetails,
this.keyboardType = TextInputType.text,
this.inputFormatters = const [],
}) : this.controller = TextEditingController(text: sdetails),
super(key: key);