FootballPlayerData constructor

const FootballPlayerData({
  1. required int id,
  2. required String fullName,
  3. required DateTime birthday,
  4. required String countryId,
  5. String? imagePath,
  6. String? description,
})

Implementation

const FootballPlayerData({
  required this.id,
  required this.fullName,
  required this.birthday,
  required this.countryId,
  this.imagePath,
  this.description,
});