permute method

  1. @override
bool permute(
  1. bool instance
)
override

Generates another instance with some deterministic function.

The only exception is Kind.forNull (because it has no other instances).

Implementation

@override
bool permute(bool instance) {
  return !instance;
}