@override List<String>? get values { List<String> list = []; if (!isNullOrEmpty(value)) { list.add(value!); if (!isNullOrEmpty(value2)) list.add(value2!); } return list.isEmpty ? null : list; }