String format(List<dynamic> args) { return splitMapJoin( RegExp(r'\{\}'), onMatch: (m) { return args.removeAt(0).toString(); }, ); }