read method

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

Is called when a value has to be decoded.

Implementation

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