concat method

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

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

Implementation

@override
bool concat(bool first, bool second) => first && second;