CustomPublicAppBar constructor

const CustomPublicAppBar({
  1. Key? key,
  2. required String nameBar,
  3. required IconData icon,
})

Implementation

const CustomPublicAppBar({
  Key? key,
  required this.nameBar,
  required this.icon,
}) : super(key: key);