TencentCloudChatAvatar constructor

const TencentCloudChatAvatar({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. double? borderRadius,
  5. required List<String?> imageList,
  6. Decoration? decoration,
  7. required TencentCloudChatAvatarScene scene,
})

Implementation

const TencentCloudChatAvatar({
  Key? key,
  this.width,
  this.height,
  this.borderRadius,
  required this.imageList,
  this.decoration,
  required this.scene,
})  : assert(imageList.length >= 1 && imageList.length <= 9),
      super(key: key);