copyWith method
Implementation
FwStandardModulesAdministratorSystemUpdateAvailableVersionsRequest copyWith({
String? currentVersion,
bool? onlyIncludeNewerVersions,
}) {
return FwStandardModulesAdministratorSystemUpdateAvailableVersionsRequest(
currentVersion: currentVersion ?? this.currentVersion,
onlyIncludeNewerVersions:
onlyIncludeNewerVersions ?? this.onlyIncludeNewerVersions,
);
}