operator > method
- dynamic other
Greater-than operation.
Implementation
LogicValue operator >(dynamic other) =>
// ignore: avoid_dynamic_calls
_doCompare(other, (a, b) => (a > b) as bool);
Greater-than operation.
LogicValue operator >(dynamic other) =>
// ignore: avoid_dynamic_calls
_doCompare(other, (a, b) => (a > b) as bool);