rightJustify method Null safety
Implementation
@protected
String rightJustify(String s, int len) {
int nw = _noWidth.allMatches(s).length;
return s.padLeft(6 + nw);
}
@protected
String rightJustify(String s, int len) {
int nw = _noWidth.allMatches(s).length;
return s.padLeft(6 + nw);
}