NoneInputDecoration constructor

const NoneInputDecoration({
  1. String? hintText,
  2. TextStyle? hintStyle,
})

Implementation

const NoneInputDecoration({String? hintText, TextStyle? hintStyle})
    : super(
        hintText: hintText,
        hintStyle: hintStyle,
        border: InputBorder.none,
        errorBorder: InputBorder.none,
        focusedBorder: InputBorder.none,
        enabledBorder: InputBorder.none,
        disabledBorder: InputBorder.none,
        contentPadding: EdgeInsets.zero,
      );