UserProperty.fromJson constructor

UserProperty.fromJson(
  1. Map json_
)

Implementation

UserProperty.fromJson(core.Map json_)
  : this(
      propertyName: json_['propertyName'] as core.String?,
      value: json_['value'] as core.String?,
    );