FootballPlayerCompanion.insert constructor
FootballPlayerCompanion.insert({})
Implementation
FootballPlayerCompanion.insert({
this.id = const Value.absent(),
required String fullName,
required DateTime birthday,
required String countryId,
this.imagePath = const Value.absent(),
this.description = const Value.absent(),
}) : fullName = Value(fullName),
birthday = Value(birthday),
countryId = Value(countryId);