RealtimeTimeRange.fromJson constructor

RealtimeTimeRange.fromJson(
  1. Map _json
)

Implementation

RealtimeTimeRange.fromJson(core.Map _json)
    : this(
        startTimestamp: _json.containsKey('startTimestamp')
            ? _json['startTimestamp'] as core.String
            : null,
      );