isNameUnrestricted method

bool isNameUnrestricted(
  1. String n
)

Checks if Name not on Restricted List

Implementation

bool isNameUnrestricted(String n) => !K_RESTRICTED_NAMES.any((v) => v == n.toLowerCase());