AActionDelete constructor

const AActionDelete({
  1. Key? key,
  2. required Function onAction,
  3. bool? loading,
  4. bool? disabled,
  5. bool alwaysShow = false,
})

Implementation

const AActionDelete({
  super.key,
  required super.onAction,
  super.loading,
  super.disabled,
  super.alwaysShow,
}) : super(
  text: "Deletar",
  style: const AActionStyle(
    backgroundColor: Colors.red,
    textColor: Colors.white,
    borderColor: Colors.red,
  ),
);