XHeader constructor

const XHeader(
  1. {Key key,
  2. double rounded = 5,
  3. double blurRadius = 12,
  4. Offset offset = const Offset(0, 8),
  5. double spreadRadius = 0.5,
  6. Color shadowColor = Colors.black,
  7. Color color = Colors.white,
  8. Widget child,
  9. Function onTap}
)

Implementation

const XHeader({
  Key key,
  this.rounded = 5,
  this.blurRadius = 12,
  this.offset = const Offset(0, 8),
  this.spreadRadius = 0.5,
  this.shadowColor = Colors.black,
  this.color = Colors.white,
  this.child,
  this.onTap,
}) : super(key: key);