Pads source to length by adding spaces at the end.
source
length
String padRight(final String source, final int length) => source + ' ' * (length - source.length);