isUuid function

bool isUuid(
  1. String? str, [
  2. String? version
])

check if the string is a UUID (version 3, 4 or 5).

Implementation

bool isUuid(String? str, [String? version]) {
  if (version == null) {
    version = 'all';
  } else {
    version = version.toString();
  }

  final pat = uuidReg[version];
  return pat != null && pat.hasMatch(str!.toUpperCase());
}