ListProperties.fromJson constructor

ListProperties.fromJson(
  1. Map json_
)

Implementation

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