isBundleIdentifier function

bool isBundleIdentifier(
  1. String input
)

Implementation

bool isBundleIdentifier(String input) {
  return _hasRegExpMatch(input, bundleRegexp);
}