isGreaterThan method

bool isGreaterThan(
  1. num b
)

判断a是否大于b

Implementation

bool isGreaterThan(num b) =>
    NumUtils.isGreaterThanStr((this ?? 0).toString(), b.toString());