AppNavigationAction constructor

const AppNavigationAction({
  1. Key? key,
  2. String? text,
  3. String? icon,
  4. double iconSize = 22,
  5. bool isActive = false,
  6. required VoidCallback onPressed,
})

Implementation

const AppNavigationAction({
  super.key,
  this.text,
  this.icon,
  this.iconSize = 22,
  this.isActive = false,
  required this.onPressed,
});