LocalLevel.fromJson constructor

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

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?
    );