RecommendationDescription.fromJson constructor

RecommendationDescription.fromJson(
  1. Map json_
)

Implementation

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