AtSyncLinearProgressIndicator constructor

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

Creates an iOS-style activity indicator that spins clockwise.

Implementation

const AtSyncLinearProgressIndicator({
  Key? key,
  this.progress,
  this.color,
  this.minHeight,
}) : super(key: key);