inverted property

  1. @override
Codec<List<int>, Object?> inverted
override

Inverts this.

The encoder and decoder of the resulting codec are swapped.

Implementation

@override
Codec<List<int>, Object?> get inverted {
  throw UnimplementedError();
}