PerformableAction constructor

const PerformableAction({
  1. required String name,
  2. VoidCallback? invoke,
  3. SingleActivator? activator,
  4. bool? checked,
})

Create an instance.

Implementation

const PerformableAction({
  required this.name,
  this.invoke,
  this.activator,
  this.checked,
});