shadows property

List<BoxShadow> get shadows

Returns the component's BoxShadows.

Implementation

List<BoxShadow> get shadows {
  final dropShadows = _dropShadows;
  final innerShadows = _innerShadows;
  return [...dropShadows, ...innerShadows];
}