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