write method

void write([
  1. Object? obj
])

Implementation

void write([Object? obj]) {
  stdout(obj ?? '');
}