OTS constructor

const OTS({
  1. Key? key,
  2. Widget? child,
  3. Widget? loader,
  4. bool showNetworkUpdates = false,
  5. bool persistNoInternetNotification = false,
  6. bool darkTheme = false,
  7. String? connectivityCheckAddress,
  8. double bottomInternetNotificationPadding = 0.0,
})

Implementation

const OTS(
    {Key? key,
    this.child,
    this.loader,
    this.showNetworkUpdates = false,
    this.persistNoInternetNotification = false,
    this.darkTheme = false,
    this.connectivityCheckAddress,
    this.bottomInternetNotificationPadding = 0.0})
    : super(key: key);