SpeakerSpotlight.fromJson constructor

SpeakerSpotlight.fromJson(
  1. 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,
      );