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