bind method
CellCircularProgressIndicator
bind({
- ValueCell<
double?> ? value, - ValueCell<
Color?> ? backgroundColor, - ValueCell<
Color?> ? color, - ValueCell<
Animation< ? valueColor,Color?> ?> - ValueCell<
double> ? strokeWidth, - ValueCell<
double> ? strokeAlign, - ValueCell<
String?> ? semanticsLabel, - ValueCell<
String?> ? semanticsValue, - ValueCell<
StrokeCap?> ? strokeCap,
Implementation
CellCircularProgressIndicator bind({
ValueCell<double?>? value,
ValueCell<Color?>? backgroundColor,
ValueCell<Color?>? color,
ValueCell<Animation<Color?>?>? valueColor,
ValueCell<double>? strokeWidth,
ValueCell<double>? strokeAlign,
ValueCell<String?>? semanticsLabel,
ValueCell<String?>? semanticsValue,
ValueCell<StrokeCap?>? strokeCap,
}) =>
CellCircularProgressIndicator(
value: value ?? this.value,
backgroundColor: backgroundColor ?? this.backgroundColor,
color: color ?? this.color,
valueColor: valueColor ?? this.valueColor,
strokeWidth: strokeWidth ?? this.strokeWidth,
strokeAlign: strokeAlign ?? this.strokeAlign,
semanticsLabel: semanticsLabel ?? this.semanticsLabel,
semanticsValue: semanticsValue ?? this.semanticsValue,
strokeCap: strokeCap ?? this.strokeCap,
);