TemplateData constructor

TemplateData({
  1. required String fullName,
  2. String? currentPosition,
  3. String? street,
  4. String? address,
  5. String? country,
  6. String? email,
  7. String? phoneNumber,
  8. String? bio,
  9. List<ExperienceData>? experience,
  10. List<Education>? educationDetails,
  11. String? image,
  12. String? backgroundImage,
  13. List<String>? hobbies,
  14. List<Language>? languages,
})

Implementation

TemplateData(
    {required this.fullName,
    this.currentPosition,
    this.street,
    this.address,
    this.country,
    this.email,
    this.phoneNumber,
    this.bio,
    this.experience,
    this.educationDetails,
    this.image,
    this.backgroundImage,
    this.hobbies,
    this.languages});