LineWrapper constructor

const LineWrapper({
  1. Key? key,
  2. required Widget child,
  3. required bool isBeforeHeader,
})

Implementation

const LineWrapper(
    {Key? key, required this.child, required this.isBeforeHeader})
    : super(key: key);