BotProfile constructor

const BotProfile({
  1. required String id,
  2. required String name,
  3. String? photo,
  4. ProfileExtra extra = const {},
  5. required int age,
  6. required String gender,
  7. required String country,
  8. required String continent,
  9. required String speakingStyle,
  10. required List<String> languages,
  11. required List<String> interests,
  12. required List<String> personalityTraits,
  13. required List<String> favoriteTopics,
})

Implementation

const BotProfile({
  required super.id,
  required String super.name,
  super.photo,
  super.extra,
  required this.age,
  required this.gender,
  required this.country,
  required this.continent,
  required this.speakingStyle,
  required this.languages,
  required this.interests,
  required this.personalityTraits,
  required this.favoriteTopics,
});