* W PubSpec.yaml The Flutter.plugin. {Androidpackage, Iosprefix, Pluginclass} Klucze są przestarzałe. Zamiast tego użyj klawisza Flutter.PLATFORMS Wprowadzony w Flutter 1.10.0

There is a typo in your pubspec.yaml. The correct keyword is "platforms", not "platform". So this should fix it:

flutter:
  plugin:
    platforms:
      ios:
        pluginClass: FlutterBlePeripheralPlugin
      android:
        package: dev.steenbakker.flutter_ble_peripheral
        pluginClass: FlutterBlePeripheralPlugin
loonix