toDebugMap method

Map<String, String> toDebugMap()

Implementation

Map<String, String> toDebugMap() {
  return map((k, v) {
    return MapEntry((k ?? '-').toString().truncate(20).removeNewlines(),
        (v ?? '-').toString().truncate(20).removeNewlines());
  });
}