isInteger function

bool isInteger(
  1. dynamic value
)

Implementation

bool isInteger(dynamic value) {
  return value is int;
}