getSdkComponent method
Implementation
@override
Future<File> getSdkComponent(String target) async {
final fileName = _branchFiles['${UfbtFileType.sdkZip.id}|$target'];
if (fileName == null) {
throw UfbtValueError('SDK bundle not found for $target');
}
return fetcher.fetchFile(branchUrl + fileName, downloadDir);
}