isObject function

bool isObject(
  1. dynamic value
)

Implementation

bool isObject(dynamic value) {
  return value is Map;
}