bind method
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,
);