CellCupertinoActivityIndicator constructor

const CellCupertinoActivityIndicator({
  1. Key? key,
  2. ValueCell<Color?>? color,
  3. ValueCell<bool> animating = const ValueCell.value(true),
  4. ValueCell<double> radius = const ValueCell.value(10.0),
})

Implementation

const CellCupertinoActivityIndicator({
  super.key,
  this.color,
  this.animating = const ValueCell.value(true),
  this.radius = const ValueCell.value(10.0),
});