TextButtonPanel constructor

const TextButtonPanel({
  1. Key? key,
  2. required List<String> nameList,
  3. void onTap(
    1. int index
    )?,
  4. PopupDirection popDirection = PopupDirection.bottom,
})

Implementation

const TextButtonPanel({
  Key? key,
  required this.nameList,
  this.onTap,
  this.popDirection = PopupDirection.bottom,
}) : super(key: key);