JSONSchema.fromJson constructor

JSONSchema.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory JSONSchema.fromJson(Map<String, dynamic> json) {
  return JSONSchema(code: json['code'], context: json['context']);
}