BoringAvatars constructor

const BoringAvatars({
  1. Key? key,
  2. required String name,
  3. BoringAvatarsType? type,
  4. List<Color>? colors,
  5. bool square = false,
})

Implementation

const BoringAvatars(
    {Key? key,
    required this.name,
    this.type,
    this.colors,
    this.square = false})
    : super(key: key);