$artifactCodecs top-level property

Map<(Type, Type), ArtifactCodec> $artifactCodecs
getter/setter pair

Implementation

Map<(Type, Type), ArtifactCodec> $artifactCodecs = {
  (String, String): const ANOOPCodec(),
  (int, int): const ANOOPCodec(),
  (double, double): const ANOOPCodec(),
  (bool, bool): const ANOOPCodec(),
  (int, double): const IntToDoubleCodec(),
  (String, int): const StringToInt(),
  (String, double): const StringToDouble(),
  (String, bool): const StringToBool(),
};