Event.fromJson constructor

Event.fromJson(
  1. Map json_
)

Implementation

Event.fromJson(core.Map json_)
  : this(
      details: (json_['details'] as core.Map<core.String, core.dynamic>?)
          ?.map((key, value) => core.MapEntry(key, value as core.String)),
      reportTime: json_['reportTime'] as core.String?,
      type: json_['type'] as core.String?,
    );