format method

String format(
  1. List<String> args
)

Implementation

String format(List<String> args) {
  if (this.isEmptyString) {
    return '';
  }
  if (args.isEmptyList) {
    return this ?? "";
  }
  var printFormat = new PrintFormat();
  return printFormat(this ?? "", args);
}