diff --git a/lib/src/packages/quill_markdown/delta_to_markdown.dart b/lib/src/packages/quill_markdown/delta_to_markdown.dart index a7c7e9dc..0803fabe 100644 --- a/lib/src/packages/quill_markdown/delta_to_markdown.dart +++ b/lib/src/packages/quill_markdown/delta_to_markdown.dart @@ -310,15 +310,15 @@ abstract class _NodeVisitor { extension _NodeX on Node { T accept(_NodeVisitor visitor, [T? context]) { switch (runtimeType) { - case Root _: + case Root: return visitor.visitRoot(this as Root, context); - case Block _: + case Block: return visitor.visitBlock(this as Block, context); - case Line _: + case Line: return visitor.visitLine(this as Line, context); - case QuillText _: + case QuillText: return visitor.visitText(this as QuillText, context); - case Embed _: + case Embed: return visitor.visitEmbed(this as Embed, context); } throw Exception('Container of type $runtimeType cannot be visited');