writeOutput method
Adds entry (a level and message) to output.
Implementation
@protected
void writeOutput(Map<String, String> entry) {
_output.add(entry);
final Object? sink = Zone.current[liveOutputZoneKey];
if (sink is void Function(Map<String, String>)) sink(entry);
}