after method

  1. @override
Future<void> after(
  1. Action action,
  2. dynamic result
)
override

Called after successful action execution

Implementation

@override
Future<void> after(Action action, dynamic result) async {
  // Log tenant action if needed
  if (kDebugMode) {
    debugPrint('Tenant ${getTenantId()}: Action ${action.runtimeType} completed');
  }
}