LocalLevel.fromJson constructor
Implementation
factory LocalLevel.fromJson(Map<String, dynamic> json) => LocalLevel(
id: json['id'] as int?,
districtid: json['districtid'] as int?,
text: json['text'] as String?,
textNp: json['textNP'] as String?
);