ApplicationEvent.fromJson constructor

ApplicationEvent.fromJson(
  1. Map json_
)

Implementation

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