ContactInitial constructor

ContactInitial({
  1. Key? key,
  2. double size = 50,
  3. required String initials,
  4. int? index,
  5. Color? backgroundColor,
})

Implementation

ContactInitial(
    {Key? key,
    this.size = 50,
    required this.initials,
    this.index,
    this.backgroundColor})
    : super(key: key);