PrefixNode.fromJson constructor

PrefixNode.fromJson(
  1. Map json_
)

Implementation

PrefixNode.fromJson(core.Map json_)
  : this(
      dataSourceNode: json_['dataSourceNode'] as core.bool?,
      depth: json_['depth'] as core.int?,
      endIndex: json_['endIndex'] as core.int?,
      startIndex: json_['startIndex'] as core.int?,
      word: json_['word'] as core.String?,
    );