write static method

void write(
  1. dynamic obj
)

Prints the given obj to the console.

This method is public and can be used to directly print messages.

Implementation

static void write(obj) => print(obj);