article method

String article()

Implementation

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