boxDecorationHeaderDark static method

BoxDecoration boxDecorationHeaderDark(
  1. bool isSub
)

Implementation

static BoxDecoration boxDecorationHeaderDark(bool isSub) {
  return BoxDecoration(
    color: isSub ? ColorsUtil.grey700 : ColorsUtil.black,
    border: const Border(
      bottom: BorderSide(
        color: ColorsUtil.grey600,
      ),
    ),
  );
}