BasicInputStyle constructor

const BasicInputStyle({
  1. required double height,
  2. required EdgeInsets padding,
  3. required TextStyle textStyle,
  4. required TextStyle hintStyle,
  5. int? maxLines,
})

Implementation

const BasicInputStyle({
  required this.height,
  required this.padding,
  required this.textStyle,
  required this.hintStyle,
  this.maxLines,
});