valuesFromList static method
Returns a comma-separated string of SQL values from the given list.
The nullAsBlank
parameter determines whether null values should be treated as blank strings.
Implementation
static String valuesFromList({required Iterable<dynamic> items, bool nullAsBlank = false}) => items.map((e) => value(e, nullAsBlank)).join(", ");