Intersection.fromJson constructor

Intersection.fromJson(
  1. Map json_
)

Implementation

Intersection.fromJson(core.Map json_)
    : this(
        rules: json_.containsKey('rules')
            ? (json_['rules'] as core.List)
                .map((value) => GcRule.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );