Forked from https://github.com/davigmacode/flutter_smart_select, updated legacy code, migrated to null safety and more. AwesomeSelect allows you to easily convert your usual form select or dropdown into dynamic page, popup dialog, or sliding bottom sheet with various choices input such as radio, checkbox, switch, chips, or even custom input. Supports single and multiple choice.
I am using
where item.subtitle and item.group are
String?
.This fails with
The return type 'String?' isn't a 'String', as required by the closure's context.
Basically, subtitle and group can either be provided or not provided, but if provided it must not be null; I need to provide it as null.
I fixed this locally and will submit a PR.