ConnectivityPlusWidget constructor

ConnectivityPlusWidget({
  1. Key? key,
  2. Color? backgroundColor,
  3. double? height,
  4. double? width,
  5. TextStyle? textStyle,
  6. String? notConnectedText,
  7. Decoration? decoration,
  8. EdgeInsets? padding,
  9. bool? marquee = false,
})

Implementation

ConnectivityPlusWidget(
    {Key? key,
    this.backgroundColor,
    this.height,
    this.width,
    this.textStyle,
    this.notConnectedText,
    this.decoration,
    this.padding,
    this.marquee = false})
    : super(key: key);