passo_mobile_app/lib/model/utils/eligibilities_choices.dart

35 lines
825 B
Dart
Raw Normal View History

2023-02-15 03:40:12 +00:00
// To parse this JSON data, do
//
// final eligibilities = eligibilitiesFromJson(jsonString);
import 'package:meta/meta.dart';
import 'dart:convert';
EligibilityList eligibilitiesFromJson(String str) => EligibilityList.fromJson(json.decode(str));
2023-02-15 03:40:12 +00:00
String eligibilitiesToJson(EligibilityList data) => json.encode(data.toJson());
2023-02-15 03:40:12 +00:00
class EligibilityList {
EligibilityList({
2023-02-15 03:40:12 +00:00
required this.id,
required this.title,
required this.type,
});
final int id;
final String title;
final String type;
factory EligibilityList.fromJson(Map<String, dynamic> json) => EligibilityList(
2023-02-15 03:40:12 +00:00
id: json["id"],
title: json["title"],
type: json["type"],
);
Map<String, dynamic> toJson() => {
"id": id,
"title": title,
"type": type,
};
}