ColumnInfo.fromJson constructor

ColumnInfo.fromJson(
  1. Map json
)

Implementation

ColumnInfo.fromJson(Map json) {
  notnull = json.asInt('notnull');
  name = json.asString('name');
  pk = json.asInt('pk');
  type = json.asString('type');
  cid = json.asInt('cid');
}