deserialize method
Implementation
@override
Map<String, dynamic> deserialize(Uint8List bytes) {
final decoded = msgpack.deserialize(bytes);
if (decoded is! Map) {
throw const FormatException('Bytes do not represent a valid Map');
}
return _deepCast(decoded);
}