splitIntegers static method

Iterable<int> splitIntegers(
  1. String parameters
)

Implementation

static Iterable<int> splitIntegers(String parameters) {
  final parameterMatches = _transformParameterRegExp.allMatches(parameters);

  return parameterMatches.map((m) {
    return int.parse(m.group(0)!);
  });
}