buildBoxShadows property

List<BoxShadow> buildBoxShadows

Does not consider shape, borderRadius. Ignores neuTextSpec.

TODO: Write more details.

Implementation

List<BoxShadow> get buildBoxShadows => Neu.boxShadows(
      color: color,
      depth: _isToggled == true ? (depth * _depthMultiplier!).round() : depth,
      curvature: curvature,
      swell: swell,
      spread: _isToggled == true ? spread * _spreadMultiplier! : spread,
      lightSource: lightSource,
    );