splitIntegers static method
Implementation
static Iterable<int> splitIntegers(String parameters) {
final parameterMatches = _transformParameterRegExp.allMatches(parameters);
return parameterMatches.map((m) {
return int.parse(m.group(0)!);
});
}