getShadowColor method

MaterialStateProperty<Color?>? getShadowColor(
  1. BuildContext context
)

Implementation

MaterialStateProperty<Color?>? getShadowColor(BuildContext context) {
  return MaterialStateProperty.resolveWith(
    (Set<MaterialState> states) =>
        shadowColor ??
        _getMaterialStyle(context)?.shadowColor?.resolve(states),
  );
}