objectMap<T extends Json> static method

JsonObjectKeyMap<T> objectMap<T extends Json>(
  1. String key,
  2. T parserConstructor()
)

A JsonKey that parses a map of Json objects.

Implementation

static JsonObjectKeyMap<T> objectMap<T extends Json>(
        String key, T Function() parserConstructor) =>
    JsonObjectKeyMap.parser(key, parserConstructor);