isPM property

bool? get isPM

Check if nullable TimeOfDay is PM

Implementation

bool? get isPM {
  if (this != null) {
    return this!.isPM;
  }
  return null;
}