decode method

  1. @override
ScaleRawBytes decode(
  1. Input input
)
override

Implementation

@override
ScaleRawBytes decode(final Input input) {
  throw UnimplementedError(
    'ScaleRawBytes.decode() is not supported. '
    'ScaleRawBytes is designed for encoding already-encoded data only. '
    'To decode, you must know the expected type and use the appropriate codec.',
  );
}