fromJson static method
Implementation
static TableIndex fromJson(Map<String, dynamic> json) {
return TableIndex(columns: [...json["columns"]], type: json["type"], name: json["name"]);
}
static TableIndex fromJson(Map<String, dynamic> json) {
return TableIndex(columns: [...json["columns"]], type: json["type"], name: json["name"]);
}