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