notInItems static method

String notInItems(
  1. List items
)

Ensure a form field value does not in contain the list of items

Implementation

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