fromJson static method

MockTelepactSchema fromJson(
  1. String json
)

Creates a MockTelepactSchema from a JSON string.

json is the JSON string representing the schema.

Implementation

static MockTelepactSchema fromJson(String json) {
  final schema = b.MockTelepactSchema.fromJson(json);
  return MockTelepactSchema(schema);
}