On this page
print abstract method
void print(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");
}));
}
Source
void print(String line);
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-async/Zone/print.html