DynamicTableActionCancel constructor

const DynamicTableActionCancel({
  1. Widget icon = const Icon(Icons.cancel),
  2. void onPressed()?,
  3. bool showAlways = false,
  4. bool showOnlyOnEditing = true,
})

Implementation

const DynamicTableActionCancel(
    {super.icon = const Icon(Icons.cancel),
    super.onPressed,
    super.showAlways,
    super.showOnlyOnEditing});