ContainerKilledEvent.fromJson constructor

ContainerKilledEvent.fromJson(
  1. Map _json
)

Implementation

ContainerKilledEvent.fromJson(core.Map _json)
    : this(
        actionId: _json.containsKey('actionId')
            ? _json['actionId'] as core.int
            : null,
      );