pertenence property
String
get
pertenence
Implementation
String get pertenence {
/// Will return the pertenence string of a word
if (isEmpty) {
return this;
}
if (this[0] == "s") {
return "${substring(0, length - 1)}'s";
} else {
return "$this's";
}
}