EventType.fromJson constructor

EventType.fromJson(
  1. Map json_
)

Implementation

EventType.fromJson(core.Map json_)
    : this(
        createTime: json_.containsKey('createTime')
            ? json_['createTime'] as core.String
            : null,
        enrichedEventPayloadSchema:
            json_.containsKey('enrichedEventPayloadSchema')
                ? json_['enrichedEventPayloadSchema'] as core.String
                : null,
        entityType: json_.containsKey('entityType')
            ? json_['entityType'] as core.String
            : null,
        eventPayloadSchema: json_.containsKey('eventPayloadSchema')
            ? json_['eventPayloadSchema'] as core.String
            : null,
        eventTypeId: json_.containsKey('eventTypeId')
            ? json_['eventTypeId'] as core.String
            : null,
        idPath: json_.containsKey('idPath')
            ? json_['idPath'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        updateTime: json_.containsKey('updateTime')
            ? json_['updateTime'] as core.String
            : null,
      );