DetailScreen constructor
- {Key? key,
- required String title,
- required Map<
String, dynamic> details, - required VoidCallback onRefresh}
Implementation
const DetailScreen({
super.key,
required this.title,
required this.details,
required this.onRefresh,
});