fromJson static method

TelepactSchema fromJson(
  1. String json
)

Creates a TelepactSchema from a JSON string.

Implementation

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