hasKey method

bool hasKey(
  1. String key
)

Returns true if JSON content contains key.

Implementation

bool hasKey(String key) => data.containsKey(key);