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