UIProAppBarAction constructor

const UIProAppBarAction({
  1. required IconData icon,
  2. VoidCallback? onPressed,
  3. String? tooltip,
  4. String? badge,
  5. Color? color,
  6. Widget? child,
})

Creates an app bar action.

Implementation

const UIProAppBarAction({
  required this.icon,
  this.onPressed,
  this.tooltip,
  this.badge,
  this.color,
  this.child,
});