normalizeAll static method

List<CapabilityId> normalizeAll(
  1. Iterable<Object?> values
)

Normalizes a list of capability values for constructors and JSON.

Implementation

static List<CapabilityId> normalizeAll(Iterable<Object?> values) =>
    values.map(normalizeObject).toList(growable: false);