Encode<EV> constructor

Encode<EV>({
  1. EV? value,
  2. EV encoder(
    1. Tuple
    )?,
  3. Map<String, Map<bool, SelectionUpdater<EV>>>? updaters,
})

Creates an aesthetic encode.

Implementation

Encode({
  this.value,
  this.encoder,
  this.updaters,
});