check static method

void check(
  1. String prefix
)

Implementation

static void check(String prefix) {
  if (isValidPrefix(prefix)) return;
  throw MinioInvalidPrefixError('Invalid prefix: $prefix');
}