isPM property
bool?
get
isPM
Check if nullable TimeOfDay is PM
Implementation
bool? get isPM {
if (this != null) {
return this!.isPM;
}
return null;
}
Check if nullable TimeOfDay is PM
bool? get isPM {
if (this != null) {
return this!.isPM;
}
return null;
}