WaterDropMaterialHeader constructor

const WaterDropMaterialHeader({
  1. Key? key,
  2. String? semanticsLabel,
  3. double distance = 60.0,
  4. double offset = 0,
  5. String? semanticsValue,
  6. Color color = Colors.white,
  7. Color? backgroundColor,
})

Implementation

const WaterDropMaterialHeader({
  Key? key,
  String? semanticsLabel,
  double distance = 60.0,
  double offset = 0,
  String? semanticsValue,
  Color color = Colors.white,
  Color? backgroundColor,
}) : super(
          key: key,
          height: 80.0,
          color: color,
          distance: distance,
          offset: offset,
          backgroundColor: backgroundColor,
          semanticsValue: semanticsValue,
          semanticsLabel: semanticsLabel);