NativeArtifactEntry.debugSymbols constructor

NativeArtifactEntry.debugSymbols({
  1. required FileSystemEntity source,
  2. required String path,
  3. 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,
  );
}