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