detectLinkRegExp property

RegExp detectLinkRegExp
final

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
static final detectLinkRegExp = RegExp(
  _detectLinkPattern,
  caseSensitive: false,
);