Avatar constructor

Avatar({
  1. required String? the200Px,
  2. required String? the128Px,
  3. required String? the32Px,
  4. required String? the20Px,
})

Implementation

Avatar({
  required this.the200Px,
  required this.the128Px,
  required this.the32Px,
  required this.the20Px,
});