DependencyEdge.fromJson constructor

DependencyEdge.fromJson(
  1. Map json_
)

Implementation

DependencyEdge.fromJson(core.Map json_)
  : this(
      headTokenIndex: json_['headTokenIndex'] as core.int?,
      label: json_['label'] as core.String?,
    );