inner property

List<BoxShadow> get inner

Implementation

static List<BoxShadow> get inner => [
  BoxShadow(
    color: AtomicColors.gray900.withValues(alpha: 0.05),
    blurRadius: 4,
    offset: const Offset(0, 2),
    spreadRadius: -2,
  ),
];