EventStream.fromJson constructor

EventStream.fromJson(
  1. Map json_
)

Implementation

EventStream.fromJson(core.Map json_)
    : this(
        eventStreamExpirationTime:
            json_.containsKey('eventStreamExpirationTime')
                ? json_['eventStreamExpirationTime'] as core.String
                : null,
        eventStreamStartTime: json_.containsKey('eventStreamStartTime')
            ? json_['eventStreamStartTime'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );