ContactInitial constructor

ContactInitial({
  1. Key? key,
  2. double size = 40,
  3. required String initials,
  4. int? index,
  5. double? maxSize,
  6. double? minSize,
})

Implementation

ContactInitial(
    {Key? key,
    this.size = 40,
    required this.initials,
    this.index,
    this.maxSize,
    this.minSize})
    : super(key: key);