shadowSmall property

List<BoxShadow> get shadowSmall

Small shadow for elevated elements

Implementation

List<BoxShadow> get shadowSmall => [
      BoxShadow(
        color: shadow.withValues(alpha: 0.1),
        blurRadius: 4,
        offset: const Offset(0, 1),
      ),
    ];