CustomOutputSpec.fromJson constructor

CustomOutputSpec.fromJson(
  1. Map json_
)

Implementation

CustomOutputSpec.fromJson(core.Map json_)
  : this(
      properties: (json_['properties'] as core.List?)
          ?.map(
            (value) => Property.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );