MaterialClassicHeader constructor

const MaterialClassicHeader({
  1. Key? key,
  2. double height = 80.0,
  3. String? semanticsLabel,
  4. String? semanticsValue,
  5. Color? color,
  6. double offset = 0,
  7. double distance = 50.0,
  8. Color? backgroundColor,
})

Implementation

const MaterialClassicHeader({
  Key? key,
  double height: 80.0,
  this.semanticsLabel,
  this.semanticsValue,
  this.color,
  double offset: 0,
  this.distance: 50.0,
  this.backgroundColor,
}) : super(
        key: key,
        refreshStyle: RefreshStyle.Front,
        offset: offset,
        height: height,
      );