mirror of
https://github.com/hmalik144/days_left_flutter.git
synced 2025-12-10 03:05:21 +00:00
- Implementation of firebase - Implementation of dependency injection Took 11 hours 26 minutes
26 lines
502 B
Dart
26 lines
502 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
class DialogRequest{
|
|
final String title;
|
|
final String description;
|
|
final String buttonTitle;
|
|
final String cancelTitle;
|
|
|
|
DialogRequest(
|
|
{@required this.title,
|
|
@required this.description,
|
|
@required this.buttonTitle,
|
|
this.cancelTitle});
|
|
}
|
|
|
|
class DialogResponse {
|
|
final String fieldOne;
|
|
final String fieldTwo;
|
|
final bool confirmed;
|
|
|
|
DialogResponse({
|
|
this.fieldOne,
|
|
this.fieldTwo,
|
|
this.confirmed,
|
|
});
|
|
} |