BaseAppBarButton constructor

BaseAppBarButton({
  1. IconData? iconData,
  2. String? title,
  3. Key? key,
  4. required VoidCallback onPressed,
})

Implementation

BaseAppBarButton({
  this.iconData,
  this.title,
  this.key,
  required this.onPressed,
}) : assert(iconData != null || title != null);