addLogFilter method
Adds the supplied directives to the current log filter
unsafe: This method is only active with appropriate flags
Implementation
Future<dynamic> addLogFilter(String directives) async {
final response = await _provider.send('system_addLogFilter', [directives]);
return response.result;
}