isBeforeTo method

bool? isBeforeTo(
  1. Time? inputTime
)

Implementation

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