isFinite method

bool isFinite(
  1. dynamic value
)

Implementation

bool isFinite(value) {
  return value == double.infinity;
}