WithBadge constructor

const WithBadge({
  1. Key? key,
  2. double size = 16,
  3. bool online = false,
  4. bool away = false,
  5. required Widget child,
})

Implementation

const WithBadge({
  super.key,
  this.size = 16,
  this.online = false,
  this.away = false,
  required this.child,
});