ReportRuntimeEventRequest.fromJson constructor

ReportRuntimeEventRequest.fromJson(
  1. Map json_
)

Implementation

ReportRuntimeEventRequest.fromJson(core.Map json_)
    : this(
        event: json_.containsKey('event')
            ? Event.fromJson(
                json_['event'] as core.Map<core.String, core.dynamic>)
            : null,
        vmId: json_.containsKey('vmId') ? json_['vmId'] as core.String : null,
      );