Prints the given line
.
The global print
function delegates to the current zone's print function which makes it possible to intercept printing.
Example:
import 'dart:async'; main() { runZoned(() { // Ends up printing: "Intercepted: in zone". print("in zone"); }, zoneSpecification: new ZoneSpecification( print: (Zone self, ZoneDelegate parent, Zone zone, String line) { parent.print(zone, "Intercepted: $line"); })); }
void print(String line);
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/2.0.0/dart-async/Zone/print.html