kAppBarBottomLine function

Widget kAppBarBottomLine({
  1. dynamic color = greyColor,
  2. dynamic height = 1.5,
})

constant app bar line

Implementation

Widget kAppBarBottomLine({color = greyColor, height: 1.5}) =>
    Container(color: color.withOpacity(0.13), height: height);