kisGreaterThan method

bool kisGreaterThan(
  1. num b
)

判断a是否大于b

Implementation

bool kisGreaterThan(num b) =>
    _KNumUtils.isGreaterThanStr((this ?? 0).toString(), b.toString());