AtSyncLinearProgressIndicator constructor

const AtSyncLinearProgressIndicator({
  1. Key? key,
  2. Color? backgroundColor,
  3. Color? color,
  4. double? value,
  5. double? minHeight,
})

Implementation

const AtSyncLinearProgressIndicator({
  Key? key,
  Color? backgroundColor,
  Color? color,
  double? value,
  this.minHeight,
}) : super(
        key: key,
        backgroundColor: backgroundColor,
        color: color,
        value: value,
      );