BottomBar constructor

const BottomBar({
  1. Key? key,
  2. required VoidCallback onCancel,
  3. required VoidCallback onSave,
})

Implementation

const BottomBar({
  super.key,
  required this.onCancel,
  required this.onSave,
});