fromJson static method

SmithyAst fromJson(
  1. Map<String, Object?> json
)

Implementation

static SmithyAst fromJson(Map<String, Object?> json) {
  return serializers.deserializeWith(SmithyAst.serializer, json) as SmithyAst;
}