InputPart.editable constructor
const
InputPart.editable({})
Implementation
const InputPart.editable({
int? length,
double? width,
String? placeholder,
String inputType = 'text',
}) : this._(
editable: true,
length: length,
width: width,
placeholder: placeholder,
inputType: inputType,
);