ReferenceSentencePair.fromJson constructor

ReferenceSentencePair.fromJson(
  1. Map json_
)

Implementation

ReferenceSentencePair.fromJson(core.Map json_)
    : this(
        sourceSentence: json_['sourceSentence'] as core.String?,
        targetSentence: json_['targetSentence'] as core.String?,
      );