convert method

  1. @override
Iterable<double> convert(
  1. String input
)
override

Converts input and returns the result of the conversion.

Implementation

@override
Iterable<double> convert(String input) =>
    input.split(",").map((e) => e.trim()).map((e) => typeDecoder.convert(e));