boxShadow property

List<BoxShadow>? boxShadow
final

Shadow for animated bar. If not set default will be :

[
  BoxShadow(
    color: Colors.black38,
    spreadRadius: 4,
    blurRadius: 2,
    offset: Offset(0, 2),
  ),
]

Implementation

final List<BoxShadow>? boxShadow;