SuggestedListProperties.fromJson constructor
SuggestedListProperties.fromJson(
- Map json_
Implementation
SuggestedListProperties.fromJson(core.Map json_)
: this(
listProperties: json_.containsKey('listProperties')
? ListProperties.fromJson(json_['listProperties']
as core.Map<core.String, core.dynamic>)
: null,
listPropertiesSuggestionState:
json_.containsKey('listPropertiesSuggestionState')
? ListPropertiesSuggestionState.fromJson(
json_['listPropertiesSuggestionState']
as core.Map<core.String, core.dynamic>)
: null,
);