permute method

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

Generates another instance with some deterministic function.

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

Implementation

@override
BigInt permute(BigInt instance) {
  return instance + BigInt.one;
}