local static method
Implementation
static SdkDeployTask local({
required String filePath,
required String hwTarget,
bool force = false,
}) {
return SdkDeployTask(
hwTarget: hwTarget,
mode: LocalSdkLoader.loaderModeKey,
force: force,
params: {'file_path': filePath},
);
}