isBiblicalText property

bool get isBiblicalText

A convenience getter to check if the format is for main biblical text as opposed to headings, titles, or other metadata.

Implementation

bool get isBiblicalText {
  switch (this) {
    case m:
    case b:
    case q1:
    case q2:
    case pmo:
    case li1:
    case li2:
    case pc:
    case qr:
    case d:
      return true;
    case r:
    case s1:
    case s2:
    case ms:
    case mr:
    case qa:
      return false;
  }
}