shadows static method

FloretParent<DecoratedBox> shadows(
  1. List<BoxShadow> shadows
)

Implementation

static FloretParent<DecoratedBox> shadows(List<BoxShadow> shadows) =>
    (Widget child) => DecoratedBox(
          child: child,
          decoration: BoxDecoration(
            boxShadow: shadows,
          ),
        );