31 lines
617 B
Dart
31 lines
617 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
class DialogRequest {
|
|
final String title;
|
|
final String description;
|
|
final String buttonTitle;
|
|
final String? cancelTitle;
|
|
final String? formatType;
|
|
|
|
DialogRequest(
|
|
{required this.title,
|
|
required this.description,
|
|
required this.buttonTitle,
|
|
this.cancelTitle,
|
|
this.formatType});
|
|
}
|
|
|
|
class DialogResponse {
|
|
//final String fieldOne;
|
|
//final String fieldTwo;
|
|
final String? responseText;
|
|
final bool confirmed;
|
|
|
|
DialogResponse({
|
|
//this.fieldOne,
|
|
//this.fieldTwo,
|
|
this.responseText,
|
|
required this.confirmed,
|
|
});
|
|
}
|