| |
| |
| |
| # forInspect method |
| |
| |
| |
| |
| *[<Null safety>](https://dart.dev/null-safety)* |
| |
| |
| |
| |
| [ArchiveReader](../../package-fuchsia_inspect_reader/ArchiveReader-class.md)<[InspectMetadata](../../package-fuchsia_inspect_reader/InspectMetadata-class.md)> forInspect |
| ({List<[Selector](../../package-fuchsia_inspect_reader/Selector-class.md)>? selectors}) |
| |
| |
| |
| |
| |
| <p>Create an <a href="../../package-fuchsia_inspect_reader/ArchiveReader-class.md">ArchiveReader</a> for reading the data specified by |
| a <a href="../../package-fuchsia_inspect_reader/InspectConfiguration-class.md">InspectConfiguration</a>, using the given <code>selectors</code>.</p> |
| <p>If no selector is specified the entire inspect tree will be returned.</p> |
| |
| |
| |
| ## Implementation |
| |
| ```dart |
| static ArchiveReader<InspectMetadata> forInspect( |
| {List<Selector>? selectors}) => |
| ArchiveReader._internal( |
| selectors: selectors, |
| diagnosticsConfiguration: InspectConfiguration()); |
| ``` |
| |
| |
| |
| |
| |
| |
| |