isAfter method

bool isAfter(
  1. Week other
)

////////////////////////////////// COMPARISON Return true if startOfWeek is after other, false otherwise.

Implementation

/// Return true if [startOfWeek] is after [other], false otherwise.
bool isAfter(Week other) => startOfWeek.isAfter(other.startOfWeek);