UNavAction<T> constructor

const UNavAction<T>({
  1. required String label,
  2. required T value,
  3. IconData? icon,
  4. bool isDestructive = false,
  5. bool enabled = true,
})

Implementation

const UNavAction({
  required this.label,
  required this.value,
  this.icon,
  this.isDestructive = false,
  this.enabled = true,
});