read method

  1. @override
RuutConversation read(
  1. BinaryReader reader
)
override

Is called when a value has to be decoded.

Implementation

@override
RuutConversation read(BinaryReader reader) {
  final numOfFields = reader.readByte();
  final fields = <int, dynamic>{
    for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(),
  };
  return RuutConversation(
    id: fields[0] as int,
    inboxId: fields[1] as int,
    messages: (fields[2] as List).cast<RuutMessage>(),
    contact: fields[3] as RuutContact,
  );
}