triptongs property Null safety
Returns all the diphtongs in the String.
Implementation
List<String> get triptongs => RegExp(r'[aeiouyà-æè-ðò-öø-ÿ]{3,}')
.allMatches(this)
.map((e) => e.group(0) as String)
.toList();
Returns all the diphtongs in the String.
List<String> get triptongs => RegExp(r'[aeiouyà-æè-ðò-öø-ÿ]{3,}')
.allMatches(this)
.map((e) => e.group(0) as String)
.toList();