AppBarLoader constructor

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

Implementation

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