PropertyValue.fromJson constructor

PropertyValue.fromJson(
  1. Map json_
)

Implementation

PropertyValue.fromJson(core.Map json_)
    : this(
        property: json_.containsKey('property')
            ? json_['property'] as core.String
            : null,
        value:
            json_.containsKey('value') ? json_['value'] as core.String : null,
      );