logError static method

Future<void> logError(
  1. String message
)

Appends a log message to Instabug internal log These logs are then sent along the next uploaded report. All log messages are timestamped Note: logs passed to this method are NOT printed to console

Implementation

static Future<void> logError(String message) async {
  return _host.logError(message);
}