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