copyWith method
Implementation
FootballPlayerCompanion copyWith({
Value<int>? id,
Value<String>? fullName,
Value<DateTime>? birthday,
Value<String>? countryId,
Value<String?>? imagePath,
Value<String?>? description,
}) {
return FootballPlayerCompanion(
id: id ?? this.id,
fullName: fullName ?? this.fullName,
birthday: birthday ?? this.birthday,
countryId: countryId ?? this.countryId,
imagePath: imagePath ?? this.imagePath,
description: description ?? this.description,
);
}