custom static method
Implementation
static Insertable<FootballPlayerData> custom({
Expression<int>? id,
Expression<String>? fullName,
Expression<DateTime>? birthday,
Expression<String>? countryId,
Expression<String>? imagePath,
Expression<String>? description,
}) {
return RawValuesInsertable({
if (id != null) 'id': id,
if (fullName != null) 'full_name': fullName,
if (birthday != null) 'birthday': birthday,
if (countryId != null) 'country_id': countryId,
if (imagePath != null) 'image_path': imagePath,
if (description != null) 'description': description,
});
}