greaterThan<T> function Null safety

bool greaterThan<T>(
  1. Object? first,
  2. Object? second
)

Perform JavaScript greater than comparison (>) of two values.

Implementation

external bool greaterThan<T>(Object? first, Object? second);