copyWith method

WebApiModulesAdministratorSystemUpdateApplyUpdateRequest copyWith({
  1. String? sessionId,
  2. String? currentVersion,
  3. String? toVersion,
})

Implementation

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