isDirSupported static method

bool isDirSupported(
  1. String? scheme
)

Checks if a given directory scheme is supported by this resolver.

@param scheme The directory scheme to check @return true if the scheme is supported, false otherwise

Implementation

static bool isDirSupported(String? scheme) {
  if (scheme == null) return false;
  return dirsScheme.containsKey(scheme);
}