FilteringAttribute.fromJson constructor

FilteringAttribute.fromJson(
  1. Map json_
)

Implementation

FilteringAttribute.fromJson(core.Map json_)
    : this(
        attribute: json_['attribute'] as core.String?,
        description: json_['description'] as core.String?,
        pathPatternSupported: json_['pathPatternSupported'] as core.bool?,
        required: json_['required'] as core.bool?,
      );