ResourceProperties.fromJson constructor

ResourceProperties.fromJson(
  1. Map json_
)

Implementation

ResourceProperties.fromJson(core.Map json_)
    : this(
        excludesDescendants: json_.containsKey('excludesDescendants')
            ? json_['excludesDescendants'] as core.bool
            : null,
      );