isMap method

bool isMap(
  1. dynamic value
)

Checks if the given value is a map.

Implementation

bool isMap(value) {
  return value is Map;
}