readJson<T> method

Future<T?> readJson<T>(
  1. String key
)

Alias for get to retrieve a stored JSON object.

Implementation

Future<T?> readJson<T>(String key) => get<T>(key);