ListConstraint.fromJson constructor
ListConstraint.fromJson(
- Map json_
Implementation
ListConstraint.fromJson(core.Map json_)
: this(
suggestedValue: json_.containsKey('suggestedValue')
? json_['suggestedValue'] as core.String
: null,
supportsUnder: json_.containsKey('supportsUnder')
? json_['supportsUnder'] as core.bool
: null,
);