isBeforeTo method
Implementation
bool? isBeforeTo(Time? inputTime) {
if (this == null && inputTime == null) {
return false;
}
return (this?.isBefore(inputTime!) ?? false);
}
bool? isBeforeTo(Time? inputTime) {
if (this == null && inputTime == null) {
return false;
}
return (this?.isBefore(inputTime!) ?? false);
}