User constructor

User({
  1. required String id,
  2. required String displayName,
  3. String? email,
  4. int? followers,
  5. required String spotifyUrl,
  6. required List<String> images,
})

Implementation

User({
  required this.id,
  required this.displayName,
  this.email,
  this.followers,
  required this.spotifyUrl,
  required this.images,
});