TreeSitterFieldMapEntry.fromJson constructor

TreeSitterFieldMapEntry.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory TreeSitterFieldMapEntry.fromJson(Map<String, Object?> json) =>
    TreeSitterFieldMapEntry(
      fieldId: _int(json, 'FieldID'),
      childIndex: _int(json, 'ChildIndex'),
      inherited: _bool(json, 'Inherited'),
    );