fix(ui): fix file download

This commit is contained in:
Salvatore Giordano
2022-05-31 10:45:03 +02:00
parent 8633ee28dc
commit 525380bddd
2 changed files with 6 additions and 3 deletions
@@ -10,8 +10,8 @@ class Application : FlutterApplication(), PluginRegistrantCallback {
super.onCreate()
}
override fun registerWith(registry: PluginRegistry?) {
PathProviderPlugin.registerWith(registry?.registrarFor(
override fun registerWith(registry: PluginRegistry) {
PathProviderPlugin.registerWith(registry.registrarFor(
"io.flutter.plugins.pathprovider.PathProviderPlugin"))
}
}