EasyAvatarGroup constructor

const EasyAvatarGroup({
  1. Key? key,
  2. required List<String> avatarList,
  3. int? maxCount,
  4. EasyAvatarSize? size,
  5. double? customerSize,
})

Implementation

const EasyAvatarGroup({
  Key? key,
  required this.avatarList,
  this.maxCount,
  this.size,
  this.customerSize,
}) : super(key: key);