TxDropDownMenuAction constructor

const TxDropDownMenuAction({
  1. required int id,
  2. required String label,
  3. required TypeActionButton type,
  4. required Function action,
})

Implementation

const TxDropDownMenuAction({
  required this.id,
  required this.label,
  required this.type,
  required this.action,
});