detectLinkRegExp property
RegExp
get
detectLinkRegExp
It detect if there is a link in the text whatever if it in the middle etc
Implementation
// Used to solve bug https://github.com/singerdmx/flutter-quill/issues/1432
RegExp get detectLinkRegExp => RegExp(
_detectLinkPattern,
caseSensitive: false,
);