splitSentences static method

Future<List<String>> splitSentences(
  1. String text
)

Split text into sentences.

Useful for debugging or custom processing.

Implementation

static Future<List<String>> splitSentences(String text) async {
  return rust.splitSentences(text: text);
}