getTable method
Gets a table definition by name.
Parameters:
name: The name of the table to retrieve.
Returns: The table definition or null if not found.
Implementation
Map<String, dynamic>? getTable(String name) {
return table[name] as Map<String, dynamic>?;
}