write static method
void
write(
- 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);
Prints the given obj
to the console.
This method is public and can be used to directly print messages.
static void write(obj) => print(obj);