deserialize static method

ShapeType deserialize(
  1. String string
)

Implementation

static ShapeType deserialize(String string) {
  return serializers.deserializeWith(ShapeType.serializer, string)
      as ShapeType;
}