ProtectionConfigSheet constructor

const ProtectionConfigSheet({
  1. Key? key,
  2. required dynamic onSave(
    1. ProtectionConfigData
    ),
  3. VoidCallback? onCancel,
  4. ProtectionConfigData? initialData,
})

Implementation

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