isValidApiKey method

bool isValidApiKey(
  1. String apiKey
)

Implementation

bool isValidApiKey(String apiKey) {
  if (apiKey.length >= 32) {
    return true;
  } else {
    return false;
  }
}