DataFlowEvent.fromJson constructor

DataFlowEvent.fromJson(
  1. Map json_
)

Implementation

DataFlowEvent.fromJson(core.Map json_)
    : this(
        eventId: json_['eventId'] as core.String?,
        eventTime: json_['eventTime'] as core.String?,
        operation: json_['operation'] as core.String?,
        principalEmail: json_['principalEmail'] as core.String?,
        violatedLocation: json_['violatedLocation'] as core.String?,
      );