ColumnInfo.fromJson constructor
ColumnInfo.fromJson(
- 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');
}