allowsAny property

bool allowsAny

True if this type group should allow any file.

Implementation

bool get allowsAny {
  return (extensions?.isEmpty ?? true) &&
      (mimeTypes?.isEmpty ?? true) &&
      (uniformTypeIdentifiers?.isEmpty ?? true) &&
      (webWildCards?.isEmpty ?? true);
}