fromJson static method

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

Implementation

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