isF function

bool isF(
  1. double? x
)

Implementation

bool isF(double? x) => x != null && x.isFinite;