flutter_chat_ui
flutter_chat_ui copied to clipboard
Make parse rules to empty on default
Is your feature request related to a problem?
No
What solution would you suggest?
Disable default match rules
Is there any additional solution to that?
No
Extras
Code snippets 📝 in widget/message/text_message.dart
maybe change
parse: [
...options.matchers,
to
parse: options.matchers ?? [
and make matchers to List?