ConferenceProperties.fromJson constructor
ConferenceProperties.fromJson(
- 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,
);