newestUsable property

AppStoreBuild? get newestUsable

The newest build that could be promoted or released now, or null.

Implementation

AppStoreBuild? get newestUsable {
  for (final build in builds) {
    if (build.usable) {
      return build;
    }
  }
  return null;
}