ConferenceProperties.fromJson constructor

ConferenceProperties.fromJson(
  1. Map json_
)

Implementation

ConferenceProperties.fromJson(core.Map json_)
    : this(
        allowedConferenceSolutionTypes:
            json_.containsKey('allowedConferenceSolutionTypes')
                ? (json_['allowedConferenceSolutionTypes'] as core.List)
                    .map((value) => value as core.String)
                    .toList()
                : null,
      );