NotiListHeader constructor
const
NotiListHeader({
- Key? key,
- double height = 48.0,
- double buttonHeight = 36.0,
- EdgeInsets buttonMargin = const EdgeInsets.only(left: 5, right: 5),
- VoidCallback? onTapSearch,
- bool isSearching = false,
- double buttonRadius = 20,
- required NotiTileType selectedType,
- required VoidCallback onTapAll,
- required VoidCallback onTapAlert,
- required VoidCallback onTapNormal,
- required VoidCallback onTapChatting,
Implementation
const NotiListHeader({
Key? key,
this.height = 48.0,
this.buttonHeight = 36.0,
this.buttonMargin = const EdgeInsets.only(left: 5, right: 5),
this.onTapSearch,
this.isSearching = false,
this.buttonRadius = 20,
required this.selectedType,
required this.onTapAll,
required this.onTapAlert,
required this.onTapNormal,
required this.onTapChatting,
}) : super(key: key);