logDebug static method
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> logDebug(String message) async {
final List<dynamic> params = <dynamic>[message];
await _channel.invokeMethod<Object>('logDebug:', params);
}