operator >= method

bool operator >=(
  1. ModelTimestamp other
)

Compare with other ModelTimestamp.

他のModelTimestampと比較します。

Implementation

bool operator >=(ModelTimestamp other) =>
    value.millisecondsSinceEpoch >= other.value.millisecondsSinceEpoch;