isNamespaceValid function

bool isNamespaceValid(
  1. dynamic nsp
)

Implementation

bool isNamespaceValid(nsp) {
  return nsp is String;
}