getTentacle property

String get getTentacle

Get title tentacle (First two words)

Implementation

String get getTentacle {
  List<String> wordArray = this.split('.');
  if (wordArray.first.split(' ').length == 2) {
    return wordArray.first;
  }

  return '';
}