minDate method

DateTime minDate(
  1. DateTime? other
)

Implementation

DateTime minDate(DateTime? other) {
  return (other == null || isBefore(other)) ? this : other;
}