getData method

String? getData(
  1. String key
)

Implementation

String? getData(String key) => containsKey(key) ? _metadata[key] : null;