intValue property

int? intValue

Implementation

int? get intValue {
  try {
    return num.parse(this).toInt();
  } catch (e, s) {
    L.w('字符串 $this 解析int过程出错, 要检查一下是否业务逻辑是否有问题! $s');
    return null;
  }
}