isJsonObject function

bool isJsonObject(
  1. Object? value
)

Checks if a value is a JSON object

Implementation

bool isJsonObject(Object? value) {
  return value != null && value is Map<String, Object?>;
}