MemoryEvent.fromJson constructor

MemoryEvent.fromJson(
  1. Map json_
)

Implementation

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