PropertiesInfo.fromJson constructor

PropertiesInfo.fromJson(
  1. 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>,
              ),
            ),
          ),
    );