mirror of
https://github.com/hanskokx/arcane_framework.git
synced 2026-05-14 10:29:06 +02:00
Fix DebugAuthInterface logout method
Added environment key to ArcaneEnvironment constructor Renamed switchEnvironment parameter in ArcaneEnvironment constructor Bumped arcane_helper_utils dependency version
This commit is contained in:
@@ -14,11 +14,10 @@ class ArcaneEnvironment extends InheritedWidget {
|
||||
/// Creates an `ArcaneEnvironment` widget.
|
||||
const ArcaneEnvironment({
|
||||
required this.environment,
|
||||
required Widget child,
|
||||
required void Function(Environment) switchEnvironment,
|
||||
Key? key,
|
||||
}) : _switchEnvironment = switchEnvironment,
|
||||
super(key: key, child: child);
|
||||
required super.child,
|
||||
super.key,
|
||||
}) : _switchEnvironment = switchEnvironment;
|
||||
|
||||
/// Retrieves the `ArcaneEnvironment` instance from the nearest ancestor.
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user