copyWith method
Implementation
LocalModel copyWith({
String? title,
String? title2,
String? languageCode,
String? countryCode,
String? local,
String? fileName,
}) =>
LocalModel(
title: title ?? this.title,
title2: title2 ?? this.title2,
languageCode: languageCode ?? this.languageCode,
countryCode: countryCode ?? this.countryCode,
local: local ?? this.local,
fileName: fileName ?? this.fileName,
);