CircularGroupContact constructor

CircularGroupContact({
  1. Key? key,
  2. List? image,
  3. String? title,
  4. String? subTitle,
  5. bool isTopRight = false,
  6. IconData? icon,
})

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);
  }
}