read method

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

Is called when a value has to be decoded.

Implementation

@override
DidcommConversation read(BinaryReader reader) {
  final numOfFields = reader.readByte();
  final fields = <int, dynamic>{
    for (int i = 0; i < numOfFields; i++) reader.readByte(): reader.read(),
  };
  return DidcommConversation(
    fields[0] as String,
    fields[1] as String,
    fields[2] as String,
  );
}