boxDecorationHeaderLight static method

BoxDecoration boxDecorationHeaderLight(
  1. bool isSub
)

Group Header

Implementation

static BoxDecoration boxDecorationHeaderLight(bool isSub) {
  return BoxDecoration(
    color: isSub ? ColorsUtil.grey100 : ColorsUtil.white,
    border: const Border(
      bottom: BorderSide(
        color: ColorsUtil.grey200,
      ),
    ),
  );
}