Returns true if the character is a valid unquoted field character.
true
bool isUnquotedFieldChar(String char) => RegExp(r'^[a-zA-Z0-9_-]+$').hasMatch(char);