withValue method

InputPart withValue(
  1. String value
)

Implementation

InputPart withValue(String value) => InputPart._(
      editable: editable,
      length: length,
      width: width,
      placeholder: placeholder,
      staticText: staticText,
      value: value,
      inputType: inputType,
    );