isGeneric function

bool isGeneric(
  1. String c
)

Implementation

bool isGeneric(String c) {
  if (RegExp(r"T\d+").hasMatch(c)) {
    return true;
  }
  return false;
}