joinWith static method
Implementation
static String? joinWith(List<String> list, BoxerOptionType type) {
String where = list.join(optionTypeToString(type));
return where.trim().isEmpty ? null : where;
}
static String? joinWith(List<String> list, BoxerOptionType type) {
String where = list.join(optionTypeToString(type));
return where.trim().isEmpty ? null : where;
}