DetailScreen constructor

const DetailScreen(
  1. {Key? key,
  2. required String title,
  3. required Map<String, dynamic> details,
  4. required VoidCallback onRefresh}
)

Implementation

const DetailScreen({
  super.key,
  required this.title,
  required this.details,
  required this.onRefresh,
});