Shannon -jj Behrens
Shannon -jj Behrens

Reputation: 5030

How can I print to stderr in Dart in a synchronous way?

I'm trying to print a message to stderr. Is there a way to pass the stderr filehandle to print?

Upvotes: 14

Views: 4946

Answers (1)

Shannon -jj Behrens
Shannon -jj Behrens

Reputation: 5030

Found it:

stderr.write("Message");

Upvotes: 16

Related Questions