Files
food_health_flutter/lib/page/profile/edit/util/common.dart
2025-08-28 16:27:56 +08:00

10 lines
248 B
Dart

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 ?? [];
}