如果数字不是NaN或正无穷大或负无穷大,则该属性返回布尔值true。
num.isInfinite
void main() { int n = 5000; print(n.isInfinite); }
它将产生以下output -
False