AppBarLoader constructor

const AppBarLoader({
  1. Key? key,
  2. required ObservableData<bool> loading,
  3. ObservableData<double?>? value,
  4. AlignmentGeometry alignment = Alignment.bottomCenter,
  5. Color? backgroundColor,
  6. Color? color,
  7. Animation<Color?>? valueColor,
  8. double? minHeight,
  9. String? semanticsLabel,
  10. String? semanticsValue,
})

Implementation

const AppBarLoader({
  super.key,
  required this.loading,
  this.value,
  this.alignment = Alignment.bottomCenter,
  this.backgroundColor,
  this.color,
  this.valueColor,
  this.minHeight,
  this.semanticsLabel,
  this.semanticsValue,
});