expect method

  1. @override
Never expect(
  1. String expect
)
override

Throws an exception with a detailed message.

Implementation

@override
Never expect(String expect) {
  throw CodableException.unexpectedType(expected: expect, data: buffer, offset: _offset);
}