inItems static method

String inItems(
  1. List items
)

Ensure a form field value contains the list of items

Implementation

static String inItems(List<dynamic> items) =>
    "in:${items.toString().replaceAll(RegExp(r'[\]\[]'), "")}";