SchemaView.fromJson constructor

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

Implementation

factory SchemaView.fromJson(Map<String, Object?> json) => SchemaView(
  name: json['name'] as String,
  schema: json['schema'] as String?,
  definition: json['definition'] as String?,
);