static Iterable<String?> toStrings(Iterable list, {String? defaultValue}) => list.map((v) => v?.toString() ?? defaultValue);