InputPart.editable constructor

const InputPart.editable({
  1. int? length,
  2. double? width,
  3. String? placeholder,
  4. String inputType = 'text',
})

Implementation

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