StandardSwitchCardElement constructor

StandardSwitchCardElement({
  1. required String cardLabel,
  2. required VoidCallback onEnable,
  3. required VoidCallback onDisable,
  4. bool isSwitchEnabled = false,
})

Implementation

StandardSwitchCardElement({
  required this.cardLabel,
  required this.onEnable,
  required this.onDisable,
  this.isSwitchEnabled = false,
});