SpeakerSpotlight.fromJson constructor
      
      SpeakerSpotlight.fromJson(
    
    
- Map json_
Implementation
SpeakerSpotlight.fromJson(core.Map json_)
    : this(
        speakerSpotlightProperties:
            json_.containsKey('speakerSpotlightProperties')
                ? SpeakerSpotlightProperties.fromJson(
                    json_['speakerSpotlightProperties']
                        as core.Map<core.String, core.dynamic>)
                : null,
      );