joinWith static method

String? joinWith(
  1. List<String> list,
  2. BoxerOptionType type
)

Implementation

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