getChunk method

List<String> getChunk()

Implementation

List<String> getChunk() {
  if (type != "text") {
    return [];
  }

  return splitTextAtNearestDot(RemoveEmoji().clean("$value"));
}