copyWith method
Implementation
WebApiModulesAdministratorSystemUpdateApplyUpdateRequest copyWith(
{String? sessionId, String? currentVersion, String? toVersion}) {
return WebApiModulesAdministratorSystemUpdateApplyUpdateRequest(
sessionId: sessionId ?? this.sessionId,
currentVersion: currentVersion ?? this.currentVersion,
toVersion: toVersion ?? this.toVersion);
}