AliceCore class

Constructors

AliceCore(GlobalKey<NavigatorState>? navigatorKey, {required bool showNotification, required bool showInspectorOnShake, required String notificationIcon, required int maxCallsCount, TextDirection? directionality, bool? showShareButton})
Creates alice core instance

Properties

callsSubject → BehaviorSubject<List<AliceHttpCall>>
Rx subject which contains all intercepted http calls
final
directionality TextDirection?
Directionality of app. If null then directionality of context will be used.
final
hashCode int
The hash code for this object.
no setterinherited
maxCallsCount int
Max number of calls that are stored in memory. When count is reached, FIFO method queue will be used to remove elements.
final
getter/setter pair
notificationIcon String
Icon url for notification
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
showInspectorOnShake bool
Should inspector be opened on device shake (works only with physical with sensors)
final
showNotification bool
Should user be notified with notification if there's new request catched by Alice
final
showShareButton bool?
Flag used to show/hide share button
final

Methods

addCall(AliceHttpCall call) → void
Add alice http call to calls subject
addError(AliceHttpError error, int requestId) → void
Add error to existing alice http call
addHttpCall(AliceHttpCall aliceHttpCall) → void
Add alice http call to calls subject
addLog(AliceLog log) → void
Adds new log to Alice logger.
addLogs(List<AliceLog> logs) → void
Adds list of logs to Alice logger
addResponse(AliceHttpResponse response, int requestId) → void
Add response to existing alice http call
dispose() → void
Dispose subjects and subscriptions
getContext() BuildContext?
Get context from navigator key. Used to open inspector route.
isInspectorOpened() bool
Returns flag which determines whether inspector is opened
Opens Http calls inspector. This will navigate user to the new fullscreen page where all listened http calls can be viewed.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
removeCalls() → void
Remove all calls from calls subject
saveHttpRequests(BuildContext context) → void
Save all calls to file
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited