RecommendationDescription.fromJson constructor
RecommendationDescription.fromJson(
- Map json_
Implementation
RecommendationDescription.fromJson(core.Map json_)
: this(
text: json_.containsKey('text') ? json_['text'] as core.String : null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
);