You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
uco-mobile-poc/lib/app/models/SendTransactionStep1Respons...

25 lines
552 B
Dart

class SendTransactionStep1ResponseModel {
int notificationId = 0;
SendTransactionStep1ResponseModel({
this.notificationId = 0,
});
factory SendTransactionStep1ResponseModel.fromMap(Map<String, dynamic> json) {
return SendTransactionStep1ResponseModel(
notificationId: json['notificationId'] ?? 0,
);
}
Map<String, dynamic> toMap() {
return {
'notificationId': notificationId,
};
}
@override
String toString() {
return 'SendTransactionStep1ResponseModel{notificationId: $notificationId}';
}
}