convertAll method

Iterable<String> convertAll(
  1. Iterable<String> values
)

Converts values to a specific case type.

Implementation

Iterable<String> convertAll(Iterable<String> values) {
  return values.map((e) => convert(e));
}