FAvatarStyle constructor

const FAvatarStyle({
  1. required Color backgroundColor,
  2. required Color foregroundColor,
  3. required Duration fadeInDuration,
  4. required TextStyle text,
})

Creates a FAvatarStyle.

Implementation

const FAvatarStyle({
  required this.backgroundColor,
  required this.foregroundColor,
  required this.fadeInDuration,
  required this.text,
});