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,
      );