bind method
Implementation
CellCupertinoActivityIndicator bind({
ValueCell<Color?>? color,
ValueCell<bool>? animating,
ValueCell<double>? radius,
}) =>
CellCupertinoActivityIndicator(
color: color ?? this.color,
animating: animating ?? this.animating,
radius: radius ?? this.radius,
);