LiveBroadcastStatistics.fromJson constructor

LiveBroadcastStatistics.fromJson(
  1. Map json_
)

Implementation

LiveBroadcastStatistics.fromJson(core.Map json_)
    : this(
        concurrentViewers: json_.containsKey('concurrentViewers')
            ? json_['concurrentViewers'] as core.String
            : null,
      );