PopupAction<T> constructor

const PopupAction<T>({
  1. required String name,
  2. required T id,
  3. bool isSelected = false,
  4. List<PopupAction<T>> subActions = const [],
  5. T? parentId,
})

Implementation

const PopupAction({
  required this.name,
  required this.id,
  this.isSelected = false,
  this.subActions = const [],
  this.parentId,
});