splitNumeric static method
Implementation
static Iterable<SvgNumeric> splitNumeric(String parameters, SvgBrush? brush) {
final parameterMatches = _transformParameterRegExp.allMatches(parameters);
return parameterMatches.map((m) => SvgNumeric(m.group(0)!, brush));
}