AnalyticsEventsItem.fromJson constructor
Implementation
factory AnalyticsEventsItem.fromJson(Map<String, dynamic> json) => AnalyticsEventsItem(
time: (json['Time'] as String?) ?? '',
eventName: (json['EventName'] as String?) ?? '',
message: (json['Message'] as String?) ?? '',
parameters: (json['Parameters'] as String?) ?? '',
);