Absorbing<F extends Object>.initWith constructor
Absorbing<F extends Object>.initWith (
- F value,
- int rate
Implementation
factory Absorbing.initWith(F value, int rate) {
final state = Absorbing<F>(List.filled(rate, null));
state.absorb(value);
return state;
}