splitDoubles static method

Iterable<double> splitDoubles(
  1. String parameters
)

Implementation

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