AttributionScopesData.fromJson constructor

AttributionScopesData.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory AttributionScopesData.fromJson(Map<String, dynamic> json) {
  return AttributionScopesData(
    values: (json['values'] as List).map((e) => e as String).toList(),
    limit: json['limit'] as num,
    maxEventStates: json['maxEventStates'] as num,
  );
}