parse method
Implementation
@override
Widget parse(Map block, {Options? options, BuildContext? context}) {
var text = block["text"];
return PlainTextParser().parse(
text,
context: context,
options: options,
);
}
@override
Widget parse(Map block, {Options? options, BuildContext? context}) {
var text = block["text"];
return PlainTextParser().parse(
text,
context: context,
options: options,
);
}