this post was submitted on 04 Oct 2023
2 points (100.0% liked)
Flutter
3 readers
1 users here now
Flutter and the related logo are trademarks of Google LLC. We are not endorsed by or affiliated with Google LLC
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Prior to sealed classes, I wished they were more like swift enums that could carry dynamic data and have different associated types per case. Now if I want that, I can do that with a sealed class. It’s still nice to have smarter enums if I need a little extra smarts and want to keep the logic close to the enum.