Avatar constructor

const Avatar({
  1. Key? key,
  2. required String? avatarURI,
  3. required String? displayName,
  4. required Color color,
  5. required String baseUrl,
  6. required String mediaServerUrl,
  7. double aviSize = 50,
  8. double textSize = 16,
})

Implementation

const Avatar({
  super.key,
  required this.avatarURI,
  required this.displayName,
  required this.color,
  required this.baseUrl,
  required this.mediaServerUrl,
  this.aviSize = 50,
  this.textSize = 16,
});