UserProfile constructor

UserProfile({
  1. List<String> addresses = const [],
  2. String? fullName,
  3. Photo? thumbnail,
  4. Photo? photo,
})

Implementation

UserProfile({
  List<String> addresses = const [],
  String? fullName,
  Photo? thumbnail,
  Photo? photo,
})  : _addresses = addresses,
      _fullName = fullName,
      _thumbnail = thumbnail,
      _photo = photo;