padRight: pads the string on the right side if it is smaller than the specified width
String padRight(int width, [String? paddingChar]) { return this?.padRight(width, paddingChar ?? " ") ?? ""; }