Profile constructor

Profile({
  1. required String id,
  2. String? status,
  3. String? badge,
  4. String? shortCode,
  5. String? site,
  6. String? youtube,
  7. String? twitch,
  8. String? steam,
  9. String? vk,
  10. String? git,
})

Implementation

Profile({
  required this.id,
  this.status,
  this.badge,
  this.shortCode,
  this.site,
  this.youtube,
  this.twitch,
  this.steam,
  this.vk,
  this.git
});