BotProfileKeys constructor

const BotProfileKeys({
  1. String id = 'profile_id',
  2. String name = 'display_name',
  3. String photo = 'display_photo',
  4. String age = 'age',
  5. String gender = 'gender',
  6. String country = 'country',
  7. String continent = 'continent',
  8. String speakingStyle = 'speakingStyle',
  9. String languages = 'languages',
  10. String interests = 'interests',
  11. String personalityTraits = 'personalityTraits',
  12. String favoriteTopics = 'favoriteTopics',
  13. String extra = 'profile_extra',
})

Implementation

const BotProfileKeys({
  this.id = 'profile_id',
  this.name = 'display_name',
  this.photo = 'display_photo',
  this.age = 'age',
  this.gender = 'gender',
  this.country = 'country',
  this.continent = 'continent',
  this.speakingStyle = 'speakingStyle',
  this.languages = 'languages',
  this.interests = 'interests',
  this.personalityTraits = 'personalityTraits',
  this.favoriteTopics = 'favoriteTopics',
  this.extra = 'profile_extra',
});