DefaultAdminButton constructor

DefaultAdminButton({
  1. required String title,
  2. required String colectionName,
  3. required Function callbackItem,
  4. ValueNotifier<Map>? dataAdded,
  5. Map? dataAll,
  6. IconData? icon,
  7. Color? color,
})

Implementation

DefaultAdminButton({
  required this.title,
  required this.colectionName,
  required this.callbackItem,
  this.dataAdded,
  this.dataAll,
  this.icon,
  this.color,
});