convert method

  1. @override
double convert(
  1. num input
)

Converts an input to output.

Implementation

@override
double convert(num input) => (input - min!) / (max! - min!);