OptionsSelectButton constructor

const OptionsSelectButton({
  1. String title = '',
  2. VoidCallback? onPressed,
  3. bool isEnabled = true,
  4. bool isRightArrowNeeded = true,
  5. Color borderColor = const Color(0xFFCCCCCC),
  6. String hint = '',
  7. bool errorBorder = false,
})

Implementation

const OptionsSelectButton({
  this.title = '',
  this.onPressed,
  this.isEnabled = true,
  this.isRightArrowNeeded = true,
  this.borderColor = const Color(0xFFCCCCCC),
  this.hint = '',
  this.errorBorder = false,
});