isNextMale property

bool get isNextMale

Implementation

bool get isNextMale {
  return 'a' == nextLetter ||
      'o' == nextLetter ||
      'A' == nextLetter ||
      'O' == nextLetter;
}