AppBarAction constructor

const AppBarAction({
  1. Key? key,
  2. VoidCallback? onTap,
  3. Widget? child,
  4. EdgeInsets padding = EdgeInsets.zero,
  5. Color color = Colors.black,
})

Implementation

const AppBarAction({
  Key? key,
  this.onTap,
  this.child,
  this.padding = EdgeInsets.zero,
  this.color = Colors.black,
}) : super(key: key);