tableError method

void tableError(
  1. Object? data, {
  2. List<String>? columns,
  3. String? label,
})

Convenience method to log table at error level

Implementation

void tableError(Object? data, {List<String>? columns, String? label}) =>
    table(data, columns: columns, level: LogLevel.error, label: label);