CATInterpreter constructor

CATInterpreter(
  1. String json,
  2. Shape shape
)

It takes a JSON string and converts it into a Dart object.

Args: json (String): The JSON string that you want to parse.

Implementation

CATInterpreter(String json, this.shape) {
  schemes = schemesFromJson(json);
}