splitSentences method

List<String> splitSentences(
  1. String text, {
  2. bool useHeuristic = true,
  3. bool useQuotesBracketProcessing = true,
  4. int maxRecoverStep = 5,
  5. int maxRecoverLength = 20000,
})

Implementation

List<String> splitSentences(String text,
    {bool useHeuristic = true, bool useQuotesBracketProcessing = true, int maxRecoverStep = 5, int maxRecoverLength = 20000}) {
  return kss.splitSentences(text, useHeuristic, useQuotesBracketProcessing, maxRecoverStep, maxRecoverLength, 0, true);
}