shadowColor property
set
shadowColor
(Color color)
Implementation
set shadowColor(Color color) {
if (_latest is Theme) {
final theme = (_latest as Theme).data.copyWith(shadowColor: color);
_replace(
(w) => Theme(
child: w,
data: theme,
),
);
} else
_add(
(w) => Theme(
child: w,
data: ThemeData(shadowColor: color),
),
);
}