AdaptiveMtTranslation.fromJson constructor

AdaptiveMtTranslation.fromJson(
  1. Map json_
)

Implementation

AdaptiveMtTranslation.fromJson(core.Map json_)
    : this(
        translatedText: json_.containsKey('translatedText')
            ? json_['translatedText'] as core.String
            : null,
      );