format method
Converts the given map into a formatted string according to the specified parse mode.
Implementation
@override
String format(
Map<String, dynamic> data, {
ParseMode parseMode = ParseMode.MarkdownV2,
}) {
final buffer = StringBuffer();
_formatMap(data, buffer, 0, parseMode);
return buffer.toString();
}