NativeArtifactEntry.debugSymbols constructor
NativeArtifactEntry.debugSymbols({
- required FileSystemEntity source,
- required String path,
- bool optional = true,
Creates a debug symbols entry from a file or directory.
Implementation
factory NativeArtifactEntry.debugSymbols({
required FileSystemEntity source,
required String path,
bool optional = true,
}) {
return NativeArtifactEntry(
source: source,
path: path,
role: NativeArtifactRole.debugSymbols,
optional: optional,
);
}