execute method

  1. @override
Future<void> execute(
  1. BuildContext context, {
  2. Map<String, dynamic>? arguments,
})
override

Executes this configuration.

The context parameter provides access to the widget tree. The optional arguments map contains parameters for the execution.

Implementation

@override
Future<void> execute(BuildContext context, {Map<String, dynamic>? arguments}) async {
  // No-op execution - the visual feedback is already shown during deserialization
  // This prevents the action from actually doing anything harmful
}