DisplayedProperty.fromJson constructor

DisplayedProperty.fromJson(
  1. Map json_
)

Implementation

DisplayedProperty.fromJson(core.Map json_)
    : this(
        propertyName: json_.containsKey('propertyName')
            ? json_['propertyName'] as core.String
            : null,
      );