build method
Implementation
DocumentSymbol build() => DocumentSymbol(
name: name,
detail: detail,
kind: kind,
range: range,
selectionRange: selectionRange,
children: children.map((c) => c.build()).toList(),
);
DocumentSymbol build() => DocumentSymbol(
name: name,
detail: detail,
kind: kind,
range: range,
selectionRange: selectionRange,
children: children.map((c) => c.build()).toList(),
);