UpdateCheckResult.available constructor

const UpdateCheckResult.available(
  1. UpdateManifest updateManifest
)

Result representing an available and compatible update with the given updateManifest.

Implementation

const UpdateCheckResult.available(UpdateManifest updateManifest)
    : isAvailable = true,
      isCompatible = true,
      manifest = updateManifest,
      rejectionReason = null;