OnlineIndicator constructor

const OnlineIndicator({
  1. Key? key,
  2. bool isOnline = false,
  3. Color? bgColor,
  4. double radius = 15.0,
  5. double borderWide = 1.0,
  6. Color? borderColor,
  7. IconData? iconData,
  8. Color? iconColor,
})

Implementation

const OnlineIndicator(
    {super.key,
    this.isOnline = false,
    this.bgColor,
    this.radius = 15.0,
    this.borderWide = 1.0,
    this.borderColor,
    this.iconData,
    this.iconColor});