startupLog property
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>),
);