stringToIterableDouble function Null safety
- String value
Generates an Iterable of double from a String with a json array structure
Example:
String array = '[1.1, 2.1]'
List<double> list = stringToIterableDouble(array).toList();
Implementation
Iterable<double> stringToIterableDouble(final String value) =>
stringToIterable(value, (e) => double.parse(e));