TencentCloudChatAvatar constructor
const
TencentCloudChatAvatar({
- Key? key,
- double? width,
- double? height,
- double? borderRadius,
- required List<
String?> imageList, - Decoration? decoration,
- 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);