ChuckCore class

Constructors

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

Properties

brightness Brightness
Get currently used brightness
no setter
callsSubject → BehaviorSubject<List<ChuckHttpCall>>
Rx subject which contains all intercepted http calls
final
darkTheme bool
Should inspector use dark theme
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 Chuck
final

Methods

addCall(ChuckHttpCall call) → void
Add Chuck http call to calls subject
addError(ChuckHttpError error, int requestId) → void
Add error to existing Chuck http call
addHttpCall(ChuckHttpCall ChuckHttpCall) → void
Add Chuck http call to calls subject
addResponse(ChuckHttpResponse response, int requestId) → void
Add response to existing Chuck http call
dispose() → void
Dispose subjects and subscriptions
getContext() BuildContext?
Get context from navigator key. Used to open inspector route.
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