ApplicationEvent.fromJson constructor
      
      ApplicationEvent.fromJson(
    
    
- Map json_
Implementation
ApplicationEvent.fromJson(core.Map json_)
    : this(
        createTime: json_['createTime'] as core.String?,
        eventType: json_['eventType'] as core.String?,
      );