XSelectButton constructor

const XSelectButton({
  1. Key? key,
  2. required bool isOpenSelect,
  3. required String selectShow,
  4. required GestureTapCallback onTap,
  5. String hint = '请选择',
  6. double? width,
  7. Color? backgroundColor,
  8. double? fontSize,
  9. Color? fontColor,
})

Implementation

const XSelectButton(
    {Key? key,
    required this.isOpenSelect,
    required this.selectShow,
    required this.onTap,
    this.hint = '请选择',
    this.width,
    this.backgroundColor,
    this.fontSize,
    this.fontColor})
    : super(key: key);