Linebar constructor

const Linebar({
  1. Key? key,
  2. required Function calculateBarWidth,
  3. required Widget child,
})

Implementation

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