get method
dynamic
get(})
Implementation
get(String title, {IconData? icon, String? asset, int? i, int? pos,Color? colorActive}) {
// TODO: implement build
return BottomNavigationBarItem(
icon: icon != null
? Icon(
icon,
color: pos == i ? colorActive != null ? colorActive : Config.colorPrimary : Colors.grey,
size: 30,
)
: Container(
height: 30,
width: 40,
child: Image.asset(
asset!,
color: pos == i ? colorActive != null ? colorActive : Config.colorPrimary : Colors.grey,
height: 40,
width: 40,
)),
);
}