ShortRepresentation.fromJson constructor
ShortRepresentation.fromJson(
- Map json_
Implementation
ShortRepresentation.fromJson(core.Map json_)
: this(
description: json_['description'] as core.String?,
subqueries:
(json_['subqueries'] as core.Map<core.String, core.dynamic>?)?.map(
(key, value) => core.MapEntry(key, value as core.int),
),
);