EntityMentionRelationship.fromJson constructor

EntityMentionRelationship.fromJson(
  1. Map json_
)

Implementation

EntityMentionRelationship.fromJson(core.Map json_)
    : this(
        confidence: (json_['confidence'] as core.num?)?.toDouble(),
        objectId: json_['objectId'] as core.String?,
        subjectId: json_['subjectId'] as core.String?,
      );