showBoxShadow property

List<BoxShadow>? showBoxShadow

Implementation

List<BoxShadow>? get showBoxShadow {
  return [
    BoxShadow(
      color: Colors.grey.withOpacity(0.8),
      spreadRadius: 4,
      blurRadius: 8,
      offset: Offset(0, 3),
    ),
  ];
}