A flutter plugin that recognises sentences in paragraphs using lingpipe NLP.
dependencies:
  file_manager: ^1.0.0import 'package:sentence_detection/sentence_detection.dart';    String paragraph =
        "This is first sentence. I was born in 01.05.2000. This is third sentence";
    List<String> _sentences = await SentenceDetection.getSentences(paragraph);