bind method

CellLinearProgressIndicator bind({
  1. ValueCell<double?>? value,
  2. ValueCell<Color?>? backgroundColor,
  3. ValueCell<Color?>? color,
  4. ValueCell<double?>? minHeight,
  5. ValueCell<String?>? semanticsLabel,
  6. ValueCell<String?>? semanticsValue,
  7. ValueCell<BorderRadiusGeometry>? borderRadius,
})

Implementation

CellLinearProgressIndicator bind({
  ValueCell<double?>? value,
  ValueCell<Color?>? backgroundColor,
  ValueCell<Color?>? color,
  ValueCell<double?>? minHeight,
  ValueCell<String?>? semanticsLabel,
  ValueCell<String?>? semanticsValue,
  ValueCell<BorderRadiusGeometry>? borderRadius,
}) =>
    CellLinearProgressIndicator(
      value: value ?? this.value,
      backgroundColor: backgroundColor ?? this.backgroundColor,
      color: color ?? this.color,
      minHeight: minHeight ?? this.minHeight,
      semanticsLabel: semanticsLabel ?? this.semanticsLabel,
      semanticsValue: semanticsValue ?? this.semanticsValue,
      borderRadius: borderRadius ?? this.borderRadius,
    );