AnalyticsProperty.fromJson constructor

AnalyticsProperty.fromJson(
  1. Map _json
)

Implementation

AnalyticsProperty.fromJson(core.Map _json)
    : this(
        displayName: _json.containsKey('displayName')
            ? _json['displayName'] as core.String
            : null,
        id: _json.containsKey('id') ? _json['id'] as core.String : null,
      );