justifyMap static method
Write a map of keys and values with justification of the values.
Implementation
static List<String> justifyMap(
Map<String, String> map, {
String preKey = '',
int gapSeparatorSize = 8,
String postValue = '',
}) =>
justifyMapImpl(
map,
preKey: preKey,
gapSeparatorSize: gapSeparatorSize,
postValue: postValue,
);