logVerbose static method

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