after method
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');
}
}