SecondHeaderProperties constructor

const SecondHeaderProperties({
  1. required Widget child,
  2. double height = 96,
  3. Color? backgroundColor = const Color.fromRGBO(224, 224, 224, 1),
  4. Color shadowColor = const Color.fromRGBO(189, 189, 189, 1),
  5. double? blurPx = 1,
})

Implementation

const SecondHeaderProperties({
  required this.child,
  this.height = 96,
  this.backgroundColor = const Color.fromRGBO(224, 224, 224, 1),
  this.shadowColor = const Color.fromRGBO(189, 189, 189, 1),
  this.blurPx = 1,
});