LinearProgressIndicator({Key key, double value })

Creates a linear progress indicator.

The value argument can be either null (corresponding to an indeterminate progress indcator) or non-null (corresponding to a determinate progress indicator). See value for details.

Source

LinearProgressIndicator({
  Key key,
  double value
}) : super(key: key, value: value);