operator > method

bool operator >(
  1. Jalali other
)

bigger than operator

throws on null argument

non-null

Implementation

bool operator >(Jalali other) {
  ArgumentError.checkNotNull(other, 'other');

  return compareTo(other) > 0;
}