CircularGroupContact constructor
CircularGroupContact({})
Implementation
CircularGroupContact({
Key? key,
this.image,
this.title,
this.subTitle,
this.isTopRight = false,
this.icon,
}) : super(key: key) {
if (image != null) {
var intList = image!.cast<int>();
image = Uint8List.fromList(intList);
}
}