copyWith method

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

Implementation

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