operator >= method

bool? operator >=(
  1. Duration other
)

Implementation

bool? operator >=(Duration other) {
  final shadow = this;
  if (shadow == null) return null;

  return shadow >= other;
}