copyWith method

CurseForgeModLogo copyWith({
  1. int? id,
  2. int? modId,
  3. String? title,
  4. String? description,
  5. String? thumbnailUrl,
  6. String? url,
})

Implementation

CurseForgeModLogo copyWith({
  int? id,
  int? modId,
  String? title,
  String? description,
  String? thumbnailUrl,
  String? url,
}) {
  return CurseForgeModLogo(
    id: id ?? this.id,
    modId: modId ?? this.modId,
    title: title ?? this.title,
    description: description ?? this.description,
    thumbnailUrl: thumbnailUrl ?? this.thumbnailUrl,
    url: url ?? this.url,
  );
}