kineapps / flutter_archive

Flutter plugin for creating and extracting ZIP files.
https://pub.dev/packages/flutter_archive
BSD 3-Clause "New" or "Revised" License
57 stars 43 forks source link

Flutter Beta Result Method Channel Fix #53

Closed Cwiesen closed 2 years ago

Cwiesen commented 2 years ago

A minor change in the latest beta flutter version (2.12.0-4.2.pre) was preventing our app to be built when depending on flutter_archive. A change to the Results method channel's error function removed the nullability of the code parameter. This PR changes code to be non-nullable and allowed our app to build properly.

kinex commented 2 years ago

Thanks!