久しぶりにFlutterで作成したアプリをビルドしたら、以下のエラー発生
Console
ios/Runner/AppDelegate.swift uses the deprecated @UIApplicationMain attribute, updating.
error (xcode): ../../../.pub-cache/hosted/pub.dev/win32-5.4.0/lib/src/guid.dart:32:9: error: type 'unmodifiableuint8listview' not found.
以下のissueを発見
最新のDartバージョンでビルドが失敗し、UnmodifiableUint8ListViewが見つからないことによるものです。
提案されている解決策としては、win32
パッケージの最新バージョンを使用することです。
以下のコマンドで、win32
パッケージの最新バージョンを使用できます。
Console
flutter pub upgrade win32