mediumShadow property

List<BoxShadow> get mediumShadow

Extension method for custom shadow

Implementation

List<BoxShadow> get mediumShadow => [
  BoxShadow(
    color: colorScheme.shadow.withValues(alpha: 0.1),
    blurRadius: 8,
    offset: Offset(0, 2),
  ),
];