format method

String format(
  1. List<Object> arg
)

Format for text.

You can assign a value to it by specifying %s.

Implementation

String format(List<Object> arg) {
  return sprintf(this, arg);
}