LabelEncode constructor

LabelEncode({
  1. required Label encoder(
    1. Tuple
    ),
  2. Map<String, Map<bool, SelectionUpdater<Label>>>? updaters,
})

Creates a label encode.

Implementation

LabelEncode({
  required Label Function(Tuple) encoder,
  Map<String, Map<bool, SelectionUpdater<Label>>>? updaters,
}) : super(
        encoder: encoder,
        updaters: updaters,
      );