EventLog.fromJson constructor

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

Implementation

EventLog.fromJson(Map<String, dynamic> json) :
    priority = json["priority"],
    value = json['value'],
    eventDate = json["eventDate"],
    scope = json['scope'],
    ipAddress = json['ipAddress'],
    client = json["client"],
    device = json['device'],
    user = json['user'],
    meta = json['meta'];