ApplicationEvent.fromJson constructor

ApplicationEvent.fromJson(
  1. Map json_
)

Implementation

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