Unverified Commit b9e925ab authored by Jonas Uekötter's avatar Jonas Uekötter Committed by GitHub

Use type promotion instead of access through a map (#122178)

Use variable instead of multiple accesses through a map
parent a5ed960d
...@@ -193,7 +193,7 @@ class Plugin { ...@@ -193,7 +193,7 @@ class Plugin {
if (androidPackage != null) { if (androidPackage != null) {
platforms[AndroidPlugin.kConfigKey] = AndroidPlugin( platforms[AndroidPlugin.kConfigKey] = AndroidPlugin(
name: name, name: name,
package: pluginYaml['androidPackage'] as String, package: androidPackage,
pluginClass: pluginClass, pluginClass: pluginClass,
pluginPath: path, pluginPath: path,
fileSystem: fileSystem, fileSystem: fileSystem,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment