article method
Implementation
String article() {
if (this.isNullOrBlank) return "";
return this.first!.isVowel ? "an $this" : "a $this";
}
String article() {
if (this.isNullOrBlank) return "";
return this.first!.isVowel ? "an $this" : "a $this";
}