splashRadius property Null safety
The splash radius for the radial reaction.
Implementation
double get splashRadius => _splashRadius!;
Implementation
set splashRadius(double value) {
if (value == _splashRadius) {
return;
}
_splashRadius = value;
notifyListeners();
}