You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
623 B
29 lines
623 B
class Retrait {
|
|
String date;
|
|
String montant;
|
|
String status;
|
|
String type;
|
|
Retrait(
|
|
{required this.date,
|
|
required this.montant,
|
|
required this.status,
|
|
required this.type});
|
|
}
|
|
|
|
List<Retrait> retraittransac = [
|
|
Retrait(
|
|
date: '28-02-2022',
|
|
montant: '10 000 MGA',
|
|
status: 'Valide',
|
|
type: "cpay demande retrait"),
|
|
Retrait(
|
|
date: '19-02-2022',
|
|
montant: '50 000 MGA',
|
|
status: 'Rejete',
|
|
type: "cpay demande retrait"),
|
|
Retrait(
|
|
date: '20-02-2022',
|
|
montant: '30 000 MGA',
|
|
status: 'Rejete',
|
|
type: "cpay demande retrait")
|
|
];
|
|
|