DefaultScreen constructor

const DefaultScreen({
  1. Key? key,
  2. required ValueNotifier<Map> dataAdded,
  3. required Map dataAll,
  4. IconData? icon,
  5. String? title,
  6. required Function callbackItem,
})

Implementation

const DefaultScreen({
  super.key,
  required this.dataAdded,
  required this.dataAll,
  this.icon,
  this.title,
  required this.callbackItem,
});