LocalLevel.fromMap constructor
Implementation
factory LocalLevel.fromMap(Map<String, dynamic> map) {
return LocalLevel(
id: (map['id'].toInt() ?? 0) as int,
districtid: (map['districtid'].toInt() ?? 0) as int,
textEN: (map['text'] ?? '') as String,
textNP: (map['textNP'] ?? '') as String,
);
}