2021-02-02 14:33:23 +00:00
|
|
|
class DialogRequest {
|
2021-11-29 23:44:22 +00:00
|
|
|
final String? title;
|
|
|
|
final String? description;
|
|
|
|
final String? buttonTitleAccept;
|
|
|
|
final String? buttonTitleDeny;
|
2021-02-02 14:33:23 +00:00
|
|
|
|
|
|
|
DialogRequest({
|
|
|
|
this.title,
|
|
|
|
this.description,
|
|
|
|
this.buttonTitleAccept,
|
|
|
|
this.buttonTitleDeny,
|
|
|
|
});
|
|
|
|
}
|