lte static method

bool? lte(
  1. Duration? a,
  2. Duration b
)

Implementation

static bool? lte(Duration? a, Duration b) => a == null ? null : a <= b;