First of all, thank you so much for making this package. It's a very important part of my app.
I started using this package in 2020 and am on version 2.2.3. I am trying to upgrade dependencies, but it breaks at version 3.0.0 because of serialization. Right now, the data is stored like this in Firebase
{
"codePoint": 59453,
"fontFamily": "MaterialIcons",
"fontPackage": null,
"matchTextDirection": false
}
When I deserialize that now with the default version, I receive null because of this line: https://github.com/Ahmadre/FlutterIconPicker/blob/master/lib/Serialization/iconDataSerialization.dart#L83. How do I get my data working with the new versions so I can upgrade this package? I have several thousand monthly users that will all lose their selected icons otherwise :(
First of all, thank you so much for making this package. It's a very important part of my app.
I started using this package in 2020 and am on version
2.2.3. I am trying to upgrade dependencies, but it breaks at version 3.0.0 because of serialization. Right now, the data is stored like this in FirebaseWhen I deserialize that now with the default version, I receive
nullbecause of this line: https://github.com/Ahmadre/FlutterIconPicker/blob/master/lib/Serialization/iconDataSerialization.dart#L83. How do I get my data working with the new versions so I can upgrade this package? I have several thousand monthly users that will all lose their selected icons otherwise :(