cellErrorOf static method
Static helper to resolve an error for a cell from the nearest TTableCellScope.
Implementation
static String? cellErrorOf(BuildContext context, dynamic data, String column, [String? cellKey]) {
final scope = maybeScopeOf(context);
return scope?.getError(data, column, cellKey);
}