startupLog property

  1. @override
Stream<PrivStartupLogLine> get startupLog
override

Diagnostic lines emitted while a start operation is running.

Implementation

@override
Stream<PrivStartupLogLine> get startupLog =>
    _startupLogStream ??= startupLogChannel.receiveBroadcastStream().map(
      (dynamic event) =>
          PrivStartupLogLine.fromMap(event as Map<dynamic, dynamic>),
    );