onConsoleProfileFinished property

Stream<ConsoleProfileFinishedEvent> onConsoleProfileFinished

Implementation

Stream<ConsoleProfileFinishedEvent> get onConsoleProfileFinished => _client
    .onEvent
    .where((event) => event.name == 'Profiler.consoleProfileFinished')
    .map((event) => ConsoleProfileFinishedEvent.fromJson(event.parameters));