79663502

Date: 2025-06-12 12:12:42
Score: 3.5
Natty:
Report link

I think the problem here is that you have your adapter read method in the wrong order. Can you confirm if the following fixes it?

CartHive read(BinaryReader reader) {
    return CartHive(
      (reader.readMap()).cast<String, int>(), // this should be the second arg
      (reader.readMap()).cast<String, String>(), // this should be the first arg
      (reader.readMap()).cast<String, int>(),
    );
  
Reasons:
  • RegEx Blacklisted phrase (1.5): fixes it?
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: underhill