shadowLarge property

List<BoxShadow> get shadowLarge

Large shadow for dialogs, modals

Implementation

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