getDeclaration method
Get an attribute from a declaration by name.
Implementation
String? getDeclaration(String declaration, String name) {
// get declaration then name, returns null if either don't exist
return declarations[declaration]?[name];
}
Get an attribute from a declaration by name.
String? getDeclaration(String declaration, String name) {
// get declaration then name, returns null if either don't exist
return declarations[declaration]?[name];
}