BusyOverlay constructor

const BusyOverlay({
  1. required Widget child,
  2. String title = "Veuillez patienter ...",
  3. bool show = false,
})

Implementation

const BusyOverlay(
    {required this.child,
    this.title = "Veuillez patienter ...",
    this.show = false});