mirror of
https://github.com/hanskokx/arcane_framework.git
synced 2026-05-14 10:29:06 +02:00
Refactor theme management to use ValueListenableBuilder for effective theme updates
Signed-off-by: Hans Kokx <hans.d.kokx@gmail.com>
This commit is contained in:
@@ -98,11 +98,16 @@ class MockArcaneAuthInterface extends _i1.Mock
|
||||
as _i5.Future<void>);
|
||||
|
||||
@override
|
||||
_i5.Future<_i2.Result<void, String>> logout() =>
|
||||
_i5.Future<_i2.Result<void, String>> logout({
|
||||
_i5.Future<void> Function()? onLoggedOut,
|
||||
}) =>
|
||||
(super.noSuchMethod(
|
||||
Invocation.method(#logout, []),
|
||||
Invocation.method(#logout, [], {#onLoggedOut: onLoggedOut}),
|
||||
returnValue: _i5.Future<_i2.Result<void, String>>.value(
|
||||
_FakeResult_0<void, String>(this, Invocation.method(#logout, [])),
|
||||
_FakeResult_0<void, String>(
|
||||
this,
|
||||
Invocation.method(#logout, [], {#onLoggedOut: onLoggedOut}),
|
||||
),
|
||||
),
|
||||
)
|
||||
as _i5.Future<_i2.Result<void, String>>);
|
||||
|
||||
Reference in New Issue
Block a user