two static method

List<BoxShadow> two(
  1. Brightness b
)

Implementation

static List<BoxShadow> two(Brightness b) => b == Brightness.light
    ? const [
        BoxShadow(
          color: Color(0x0A1C1A17),
          offset: Offset(0, 2),
          blurRadius: 0,
        ),
        BoxShadow(
          color: Color(0x121C1A17),
          offset: Offset(0, 6),
          blurRadius: 18,
        ),
      ]
    : const [
        BoxShadow(
          color: Color(0x4D000000),
          offset: Offset(0, 2),
          blurRadius: 0,
        ),
        BoxShadow(
          color: Color(0x66000000),
          offset: Offset(0, 6),
          blurRadius: 18,
        ),
      ];