Transforms this into a String and pads it on the right if it is shorter than the given width.
this
String
width
String padRight(int width, [String padding = '0']) => toString().padRight(width, padding);