justifyMap static method

List<String> justifyMap(
  1. Map<String, String> map, {
  2. String preKey = '',
  3. int gapSeparatorSize = 8,
  4. String postValue = '',
})

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,
    );