AnalyticsProperties.fromJson constructor
AnalyticsProperties.fromJson(
- dynamic properties
Implementation
factory AnalyticsProperties.fromJson(dynamic properties) {
return AnalyticsProperties(
category: properties != null ? properties['category'] : null,
action: properties != null ? properties['action'] : null,
label: properties != null ? properties['label'] : null,
track: properties != null ? properties['track'] : null,
);
}