Avataaar constructor

Avataaar({
  1. String baseUrl = AvataaarsApi.baseUrl,
  2. required Top top,
  3. required Clothes clothes,
  4. required Eyes eyes,
  5. required Eyebrow eyebrow,
  6. required Mouth mouth,
  7. required Skin skin,
  8. required Style style,
  9. Color backgroundColor = AvataaarsApi.baseBackgroundColor,
})

Implementation

Avataaar({
  this.baseUrl = AvataaarsApi.baseUrl,
  required this.top,
  required this.clothes,
  required this.eyes,
  required this.eyebrow,
  required this.mouth,
  required this.skin,
  required this.style,
  this.backgroundColor = AvataaarsApi.baseBackgroundColor,
});