copyWith method
Implementation
ApplicationVersionInfo copyWith({
String? name,
String? version,
}) {
final _copy_name = name ?? this.name;
final _copy_version = version ?? this.version;
return ApplicationVersionInfo(
name: _copy_name,
version: _copy_version,
);
}