splashRadius property

double splashRadius

The splash radius for the radial reaction.

Implementation

double get splashRadius => _splashRadius!;
void splashRadius=(double value)

Implementation

set splashRadius(double value) {
  if (value == _splashRadius) {
    return;
  }
  _splashRadius = value;
  notifyListeners();
}