bind method

CellCircularProgressIndicator bind({
  1. ValueCell<double?>? value,
  2. ValueCell<Color?>? backgroundColor,
  3. ValueCell<Color?>? color,
  4. ValueCell<Animation<Color?>?>? valueColor,
  5. ValueCell<double>? strokeWidth,
  6. ValueCell<double>? strokeAlign,
  7. ValueCell<String?>? semanticsLabel,
  8. ValueCell<String?>? semanticsValue,
  9. 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,
    );