isNaN function

bool isNaN(
  1. dynamic input
)

Implementation

bool isNaN(dynamic input) {
  return input.isNaN;
}