AvatarSection constructor

const AvatarSection({
  1. Key? key,
  2. required ImageProvider<Object> avatar,
  3. bool online = true,
  4. required String status,
})

Implementation

const AvatarSection({
  super.key,
  required this.avatar,
  this.online = true, required String status,
});