BaseAppBarButton constructor
BaseAppBarButton({
- IconData? iconData,
- String? title,
- Key? key,
- required VoidCallback onPressed,
Implementation
BaseAppBarButton({
this.iconData,
this.title,
this.key,
required this.onPressed,
}) : assert(iconData != null || title != null);