operator > method

bool operator >(
  1. ModelDate other
)

Compare with other ModelDate.

他のModelDateと比較します。

Implementation

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