image method
Implementation
MarkdownDocument image(String imagePath,
[String? imageText, bool showText = false]) {
imageText = imageText ?? '';
_document = _document + '![${imageText}]($imagePrefix/${imagePath})';
if (showText) {
_document = _document + ' ${imageText}';
}
_document = _document + '\n';
return this;
}