isCriticalUpdate property

bool isCriticalUpdate

Returns true if the tags (AppCastConstants.ElementTags) contains critical update (AppCastConstants.ElementCriticalUpdate).

Implementation

bool get isCriticalUpdate => tags == null
    ? false
    : tags!.contains(AppCastConstants.ElementCriticalUpdate);