isInteger method

bool isInteger(
  1. num value
)

Implementation

bool isInteger(num value) => (value % 1) == 0;