convert method

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

Converts input and returns the result of the conversion.

Implementation

@override
String convert(Iterable<double> input) =>
    input.map((e) => typeEncoder.convert(e)).join(', ');