call method

void call([
  1. String? input
])

Implementation

void call([String? input]) {
  if (input != null) {
    text(input);
  } else {
    print();
  }
}