基本完成

This commit is contained in:
zhutao
2025-08-28 16:27:56 +08:00
commit 5d7d233d2e
132 changed files with 6390 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import 'package:food_health/api/dto/profile_options_dto.dart';
List<String> getOptions(List<ProfileOptionDto> options, String key) {
var data = options.firstWhere((item) {
return item.key == key;
});
//
return data.valuesList ?? [];
}