EventStream.fromJson constructor

EventStream.fromJson(
  1. Map json_
)

Implementation

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