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.
25 lines
552 B
Dart
25 lines
552 B
Dart
|
1 month ago
|
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}';
|
||
|
|
}
|
||
|
|
}
|