concat method

  1. @override
double concat(
  1. double first,
  2. double second
)
override

Method that must be implemented to combine two elements of the Semigroup.

Implementation

@override
double concat(double first, double second) => first * second;