formatBlockEntry method
Formats a block map/iterable entry before it is buffered.
Implementation
String formatBlockEntry(
String entry,
String indentation, {
required bool isNotFirst,
}) => isNotFirst ? '$indentation$entry' : entry;
Formats a block map/iterable entry before it is buffered.
String formatBlockEntry(
String entry,
String indentation, {
required bool isNotFirst,
}) => isNotFirst ? '$indentation$entry' : entry;