OutputLocation constructor
OutputLocation({})
Implementation
OutputLocation({
Key? key,
required this.location,
this.file,
this.label = '',
this.startLine = 0,
Platform platform = const LocalPlatform(),
}) : _fileBrowserName = _getFileBrowserName(platform),
assert(file == null || file.absolute.path.contains(location.absolute.path),
'Supplied file must be within location directory'),
super(key: key);