passo_mobile_app/lib/model/passo/memoranda.dart

34 lines
712 B
Dart
Raw Normal View History

2023-09-01 03:22:48 +00:00
// To parse this JSON data, do
//
// final memoranda = memorandaFromJson(jsonString);
import 'dart:convert';
Memoranda memorandaFromJson(String str) => Memoranda.fromJson(json.decode(str));
String memorandaToJson(Memoranda data) => json.encode(data.toJson());
class Memoranda {
final int? id;
final String? code;
final String? memoranda;
Memoranda({
this.id,
this.code,
this.memoranda,
});
factory Memoranda.fromJson(Map<String, dynamic> json) => Memoranda(
id: json["id"],
code: json["code"],
memoranda: json["memoranda"],
);
Map<String, dynamic> toJson() => {
"id": id,
"code": code,
"memoranda": memoranda,
};
}