SchemaField.fromJson constructor

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

Implementation

factory SchemaField.fromJson(Map<String, dynamic> json) {
  return SchemaField(
    name: json['name'],
    type: json['type'],
    nullable: json['nullable'],
  );
}