BotProfile constructor
const
BotProfile({
- required String id,
- required String name,
- String? photo,
- ProfileExtra extra = const {},
- required int age,
- required String gender,
- required String country,
- required String continent,
- required String speakingStyle,
- required List<
String> languages, - required List<
String> interests, - required List<
String> personalityTraits, - 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,
});