SYMBOL INDEX (1650 symbols across 208 files) FILE: example/lib/lang/translation_service.dart class TranslationService (line 7) | class TranslationService extends Translations { FILE: example/lib/main.dart function main (line 32) | void main() class MyApp (line 36) | class MyApp extends StatelessWidget { method build (line 40) | Widget build(BuildContext context) class FirstController (line 66) | class FirstController extends GetxController { method onClose (line 68) | void onClose() class First (line 74) | class First extends StatelessWidget { method build (line 78) | Widget build(BuildContext context) class SecondController (line 118) | class SecondController extends GetxController { method onClose (line 121) | void onClose() class Second (line 128) | class Second extends StatelessWidget { method build (line 132) | Widget build(BuildContext context) class Third (line 167) | class Third extends StatelessWidget { method build (line 171) | Widget build(BuildContext context) class Fourth (line 195) | class Fourth extends StatelessWidget { method build (line 199) | Widget build(BuildContext context) FILE: example/lib/pages/home/bindings/details_binding.dart class DetailsBinding (line 5) | class DetailsBinding extends Binding { method dependencies (line 7) | List dependencies() FILE: example/lib/pages/home/bindings/home_binding.dart class HomeBinding (line 8) | class HomeBinding extends Binding { method dependencies (line 10) | List dependencies() FILE: example/lib/pages/home/data/home_api_provider.dart class IHomeProvider (line 7) | abstract class IHomeProvider { method getCountries (line 8) | Future>> getCountries() method getCountry (line 10) | Future> getCountry(String path) class HomeProvider (line 13) | class HomeProvider extends GetConnect implements IHomeProvider { method onInit (line 15) | void onInit() method getCountries (line 22) | Future>> getCountries() method getCountry (line 30) | Future> getCountry(String path) FILE: example/lib/pages/home/data/home_repository.dart class HomeRepository (line 5) | class HomeRepository implements IHomeRepository { method getCountries (line 10) | Future> getCountries() method getCountry (line 19) | Future getCountry(String path) FILE: example/lib/pages/home/domain/adapters/repository_adapter.dart class IHomeRepository (line 4) | abstract class IHomeRepository { method getCountries (line 5) | Future> getCountries() method getCountry (line 7) | Future getCountry(String path) FILE: example/lib/pages/home/domain/entity/country_model.dart class Country (line 2) | class Country { class CountriesItem (line 25) | class CountriesItem { FILE: example/lib/pages/home/presentation/controllers/details_controller.dart class DetailsController (line 6) | class DetailsController extends StateController { method onInit (line 13) | void onInit() FILE: example/lib/pages/home/presentation/controllers/home_controller.dart class HomeController (line 6) | class HomeController extends StateController> { method onInit (line 12) | void onInit() method getCountryByName (line 17) | Future getCountryByName(String name) FILE: example/lib/pages/home/presentation/views/details_view.dart class DetailsView (line 9) | class DetailsView extends GetView { method build (line 13) | Widget build(BuildContext context) class InfoRow (line 92) | class InfoRow extends StatelessWidget { method build (line 103) | Widget build(BuildContext context) FILE: example/lib/pages/home/presentation/views/home_view.dart class HomeView (line 8) | class HomeView extends GetView { method build (line 12) | Widget build(BuildContext context) FILE: example/lib/routes/app_pages.dart class AppPages (line 11) | class AppPages { FILE: example/lib/routes/app_routes.dart class Routes (line 3) | abstract class Routes { FILE: example/lib/shared/logger/logger_utils.dart function write (line 3) | void write(String text, {bool isError = false}) FILE: example/test/main_test.dart class MockRepositorySuccess (line 24) | class MockRepositorySuccess implements IHomeRepository { method getCountries (line 26) | Future> getCountries() method getCountry (line 29) | Future getCountry(String path) class MockRepositoryFailure (line 38) | class MockRepositoryFailure implements IHomeRepository { method getCountries (line 40) | Future> getCountries() method getCountry (line 44) | Future getCountry(String path) class FetchException (line 48) | class FetchException implements Exception { class TestHomeBinding (line 54) | class TestHomeBinding extends Binding { method dependencies (line 59) | List dependencies() class TestDetailsBinding (line 67) | class TestDetailsBinding extends Binding { method dependencies (line 72) | List dependencies() function main (line 80) | void main() FILE: example/test/widget_test.dart function main (line 13) | void main() FILE: example_nav2/lib/app/middleware/auth_middleware.dart class EnsureAuthMiddleware (line 6) | class EnsureAuthMiddleware extends GetMiddleware { method redirectDelegate (line 8) | Future redirectDelegate(RouteDecoder route) class EnsureNotAuthedMiddleware (line 21) | class EnsureNotAuthedMiddleware extends GetMiddleware { method redirectDelegate (line 23) | Future redirectDelegate(RouteDecoder route) FILE: example_nav2/lib/app/modules/dashboard/bindings/dashboard_binding.dart class DashboardBinding (line 5) | class DashboardBinding extends Binding { method dependencies (line 7) | List dependencies() FILE: example_nav2/lib/app/modules/dashboard/controllers/dashboard_controller.dart class DashboardController (line 5) | class DashboardController extends GetxController { method onReady (line 8) | void onReady() FILE: example_nav2/lib/app/modules/dashboard/views/dashboard_view.dart class DashboardView (line 6) | class DashboardView extends GetView { method build (line 10) | Widget build(BuildContext context) FILE: example_nav2/lib/app/modules/home/bindings/home_binding.dart class HomeBinding (line 5) | class HomeBinding extends Binding { method dependencies (line 7) | List dependencies() FILE: example_nav2/lib/app/modules/home/controllers/home_controller.dart class HomeController (line 3) | class HomeController extends GetxController {} FILE: example_nav2/lib/app/modules/home/views/home_view.dart class HomeView (line 7) | class HomeView extends GetView { method build (line 11) | Widget build(BuildContext context) FILE: example_nav2/lib/app/modules/login/bindings/login_binding.dart class LoginBinding (line 5) | class LoginBinding extends Binding { method dependencies (line 7) | List dependencies() FILE: example_nav2/lib/app/modules/login/controllers/login_controller.dart class LoginController (line 3) | class LoginController extends GetxController {} FILE: example_nav2/lib/app/modules/login/views/login_view.dart class LoginView (line 8) | class LoginView extends GetView { method build (line 12) | Widget build(BuildContext context) FILE: example_nav2/lib/app/modules/product_details/bindings/product_details_binding.dart class ProductDetailsBinding (line 5) | class ProductDetailsBinding extends Binding { method dependencies (line 7) | List dependencies() FILE: example_nav2/lib/app/modules/product_details/controllers/product_details_controller.dart class ProductDetailsController (line 3) | class ProductDetailsController extends GetxController { method onInit (line 8) | void onInit() method onClose (line 14) | void onClose() FILE: example_nav2/lib/app/modules/product_details/views/product_details_view.dart class ProductDetailsView (line 6) | class ProductDetailsView extends GetWidget { method build (line 10) | Widget build(BuildContext context) FILE: example_nav2/lib/app/modules/products/bindings/products_binding.dart class ProductsBinding (line 5) | class ProductsBinding extends Binding { method dependencies (line 7) | List dependencies() FILE: example_nav2/lib/app/modules/products/controllers/products_controller.dart class ProductsController (line 5) | class ProductsController extends GetxController { method loadDemoProductsFromSomeWhere (line 8) | void loadDemoProductsFromSomeWhere() method onReady (line 18) | void onReady() method onClose (line 24) | void onClose() FILE: example_nav2/lib/app/modules/products/views/products_view.dart class ProductsView (line 7) | class ProductsView extends GetView { method build (line 10) | Widget build(BuildContext context) FILE: example_nav2/lib/app/modules/profile/bindings/profile_binding.dart class ProfileBinding (line 5) | class ProfileBinding extends Binding { method dependencies (line 7) | List dependencies() FILE: example_nav2/lib/app/modules/profile/controllers/profile_controller.dart class ProfileController (line 3) | class ProfileController extends GetxController {} FILE: example_nav2/lib/app/modules/profile/views/profile_view.dart class ProfileView (line 7) | class ProfileView extends GetView { method build (line 11) | Widget build(BuildContext context) FILE: example_nav2/lib/app/modules/root/bindings/root_binding.dart class RootBinding (line 5) | class RootBinding extends Binding { method dependencies (line 7) | List dependencies() FILE: example_nav2/lib/app/modules/root/controllers/root_controller.dart class RootController (line 3) | class RootController extends GetxController { method onInit (line 6) | void onInit() method onClose (line 11) | void onClose() method increment (line 12) | void increment() FILE: example_nav2/lib/app/modules/root/views/drawer.dart class DrawerWidget (line 7) | class DrawerWidget extends StatelessWidget { method build (line 13) | Widget build(BuildContext context) FILE: example_nav2/lib/app/modules/root/views/root_view.dart class RootView (line 8) | class RootView extends GetView { method build (line 12) | Widget build(BuildContext context) FILE: example_nav2/lib/app/modules/settings/bindings/settings_binding.dart class SettingsBinding (line 5) | class SettingsBinding extends Binding { method dependencies (line 7) | List dependencies() FILE: example_nav2/lib/app/modules/settings/controllers/settings_controller.dart class SettingsController (line 3) | class SettingsController extends GetxController { method onInit (line 6) | void onInit() method onClose (line 11) | void onClose() method increment (line 12) | void increment() FILE: example_nav2/lib/app/modules/settings/views/settings_view.dart class SettingsView (line 6) | class SettingsView extends GetView { method build (line 10) | Widget build(BuildContext context) FILE: example_nav2/lib/app/routes/app_pages.dart class AppPages (line 26) | class AppPages { class MainMiddleware (line 111) | class MainMiddleware extends GetMiddleware { method onPageDispose (line 113) | void onPageDispose() method onPageBuilt (line 119) | Widget onPageBuilt(Widget page) method onPageCalled (line 125) | GetPage? onPageCalled(GetPage? page) method onBindingsStart (line 131) | List? onBindingsStart(List? bindings) method onPageBuildStart (line 137) | GetPageBuilder? onPageBuildStart(GetPageBuilder? page) FILE: example_nav2/lib/app/routes/app_routes.dart class Routes (line 6) | abstract class Routes { method LOGIN_THEN (line 17) | String LOGIN_THEN(String afterSuccessfulLogin) method PRODUCT_DETAILS (line 19) | String PRODUCT_DETAILS(String productId) class _Paths (line 22) | abstract class _Paths { FILE: example_nav2/lib/main.dart function main (line 7) | void main() FILE: example_nav2/lib/models/demo_product.dart class DemoProduct (line 1) | class DemoProduct { FILE: example_nav2/lib/services/auth_service.dart class AuthService (line 3) | class AuthService extends GetxService { method login (line 10) | void login() method logout (line 14) | void logout() FILE: example_nav2/linux/flutter/generated_plugin_registrant.cc function fl_register_plugins (line 10) | void fl_register_plugins(FlPluginRegistry* registry) { FILE: example_nav2/linux/main.cc function main (line 3) | int main(int argc, char** argv) { FILE: example_nav2/linux/my_application.cc type _MyApplication (line 10) | struct _MyApplication { function my_application_activate (line 18) | static void my_application_activate(GApplication* application) { function gboolean (line 66) | static gboolean my_application_local_command_line(GApplication* applicat... function my_application_dispose (line 85) | static void my_application_dispose(GObject* object) { function my_application_class_init (line 91) | static void my_application_class_init(MyApplicationClass* klass) { function my_application_init (line 97) | static void my_application_init(MyApplication* self) {} function MyApplication (line 99) | MyApplication* my_application_new() { FILE: example_nav2/linux/runner/main.cc function main (line 3) | int main(int argc, char** argv) { FILE: example_nav2/linux/runner/my_application.cc type _MyApplication (line 10) | struct _MyApplication { function my_application_activate (line 18) | static void my_application_activate(GApplication* application) { function gboolean (line 66) | static gboolean my_application_local_command_line(GApplication* applicat... function my_application_startup (line 85) | static void my_application_startup(GApplication* application) { function my_application_shutdown (line 94) | static void my_application_shutdown(GApplication* application) { function my_application_dispose (line 103) | static void my_application_dispose(GObject* object) { function my_application_class_init (line 109) | static void my_application_class_init(MyApplicationClass* klass) { function my_application_init (line 117) | static void my_application_init(MyApplication* self) {} function MyApplication (line 119) | MyApplication* my_application_new() { FILE: example_nav2/test/widget_test.dart function main (line 11) | void main() FILE: example_nav2/windows/flutter/generated_plugin_registrant.cc function RegisterPlugins (line 10) | void RegisterPlugins(flutter::PluginRegistry* registry) { FILE: example_nav2/windows/runner/flutter_window.cpp function LRESULT (line 43) | LRESULT FILE: example_nav2/windows/runner/flutter_window.h function class (line 13) | class FlutterWindow : public Win32Window { FILE: example_nav2/windows/runner/main.cpp function wWinMain (line 9) | int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, FILE: example_nav2/windows/runner/run_loop.h function class (line 11) | class RunLoop { FILE: example_nav2/windows/runner/utils.cpp function CreateAndAttachConsole (line 10) | void CreateAndAttachConsole() { function GetCommandLineArguments (line 24) | std::vector GetCommandLineArguments() { function Utf8FromUtf16 (line 44) | std::string Utf8FromUtf16(const wchar_t* utf16_string) { FILE: example_nav2/windows/runner/win32_window.cpp function Scale (line 18) | int Scale(int source, double scale_factor) { function EnableFullDpiSupportIfAvailable (line 24) | void EnableFullDpiSupportIfAvailable(HWND hwnd) { class WindowClassRegistrar (line 41) | class WindowClassRegistrar { method WindowClassRegistrar (line 46) | static WindowClassRegistrar* GetInstance() { method WindowClassRegistrar (line 62) | WindowClassRegistrar() = default; function wchar_t (line 71) | const wchar_t* WindowClassRegistrar::GetWindowClass() { function LRESULT (line 133) | LRESULT CALLBACK Win32Window::WndProc(HWND const window, function LRESULT (line 152) | LRESULT function Win32Window (line 208) | Win32Window* Win32Window::GetThisFromHandle(HWND const window) noexcept { function RECT (line 224) | RECT Win32Window::GetClientArea() { function HWND (line 230) | HWND Win32Window::GetHandle() { FILE: example_nav2/windows/runner/win32_window.h type Size (line 21) | struct Size { FILE: lib/get_animations/animations.dart type OffsetBuilder (line 8) | typedef OffsetBuilder = Offset Function(BuildContext, double); class FadeInAnimation (line 10) | class FadeInAnimation extends OpacityAnimation { class FadeOutAnimation (line 23) | class FadeOutAnimation extends OpacityAnimation { class OpacityAnimation (line 36) | class OpacityAnimation extends GetAnimatedBuilder { class RotateAnimation (line 57) | class RotateAnimation extends GetAnimatedBuilder { class ScaleAnimation (line 76) | class ScaleAnimation extends GetAnimatedBuilder { class BounceAnimation (line 114) | class BounceAnimation extends GetAnimatedBuilder { class SpinAnimation (line 134) | class SpinAnimation extends GetAnimatedBuilder { class SizeAnimation (line 151) | class SizeAnimation extends GetAnimatedBuilder { class BlurAnimation (line 170) | class BlurAnimation extends GetAnimatedBuilder { class FlipAnimation (line 192) | class FlipAnimation extends GetAnimatedBuilder { class WaveAnimation (line 215) | class WaveAnimation extends GetAnimatedBuilder { class WobbleAnimation (line 238) | class WobbleAnimation extends GetAnimatedBuilder { class SlideInLeftAnimation (line 260) | class SlideInLeftAnimation extends SlideAnimation { class SlideInRightAnimation (line 276) | class SlideInRightAnimation extends SlideAnimation { class SlideInUpAnimation (line 292) | class SlideInUpAnimation extends SlideAnimation { class SlideInDownAnimation (line 308) | class SlideInDownAnimation extends SlideAnimation { class SlideAnimation (line 324) | class SlideAnimation extends GetAnimatedBuilder { class ColorAnimation (line 363) | class ColorAnimation extends GetAnimatedBuilder { FILE: lib/get_animations/extensions.dart function fadeIn (line 13) | GetAnimatedBuilder fadeIn({ function fadeOut (line 30) | GetAnimatedBuilder fadeOut({ function rotate (line 47) | GetAnimatedBuilder rotate({ function scale (line 65) | GetAnimatedBuilder scale({ function slide (line 83) | GetAnimatedBuilder slide({ function bounce (line 103) | GetAnimatedBuilder bounce({ function spin (line 121) | GetAnimatedBuilder spin({ function size (line 135) | GetAnimatedBuilder size({ function blur (line 153) | GetAnimatedBuilder blur({ function flip (line 171) | GetAnimatedBuilder flip({ function wave (line 189) | GetAnimatedBuilder wave({ function _getDelay (line 207) | Duration _getDelay(bool isSequential, Duration delay) FILE: lib/get_animations/get_animated_builder.dart class GetAnimatedBuilder (line 5) | class GetAnimatedBuilder extends StatefulWidget { method createState (line 31) | GetAnimatedBuilderState createState() class GetAnimatedBuilderState (line 34) | class GetAnimatedBuilderState extends State> method _listener (line 51) | void _listener(AnimationStatus status) method initState (line 70) | void initState() method dispose (line 117) | void dispose() method build (line 124) | Widget build(BuildContext context) FILE: lib/get_common/get_reset.dart function reset (line 4) | void reset({bool clearRouteBindings = true}) FILE: lib/get_connect/connect.dart class GetConnectInterface (line 15) | abstract class GetConnectInterface with GetLifeCycleMixin { method get (line 19) | Future> get( method request (line 27) | Future> request( method post (line 37) | Future> post( method put (line 46) | Future> put( method delete (line 55) | Future> delete( method patch (line 63) | Future> patch( method query (line 73) | Future> query( method mutation (line 80) | Future> mutation( method socket (line 87) | GetSocket socket( class GetConnect (line 93) | class GetConnect extends GetConnectInterface { method get (line 139) | Future> get( method post (line 157) | Future> post( method put (line 179) | Future> put( method patch (line 201) | Future> patch( method request (line 223) | Future> request( method delete (line 247) | Future> delete( method socket (line 265) | GetSocket socket( method _concatUrl (line 276) | String? _concatUrl(String? url) method query (line 301) | Future> query( method mutation (line 339) | Future> mutation( method _checkIfDisposed (line 377) | void _checkIfDisposed({bool isHttp = true}) method dispose (line 383) | void dispose() FILE: lib/get_connect/http/src/certificates/certificates.dart class TrustedCertificate (line 1) | class TrustedCertificate { FILE: lib/get_connect/http/src/exceptions/exceptions.dart class GetHttpException (line 1) | class GetHttpException implements Exception { method toString (line 9) | String toString() class GraphQLError (line 12) | class GraphQLError { method toString (line 18) | String toString() class UnauthorizedException (line 21) | class UnauthorizedException implements Exception { method toString (line 23) | String toString() class UnexpectedFormat (line 28) | class UnexpectedFormat implements Exception { method toString (line 32) | String toString() FILE: lib/get_connect/http/src/http.dart type Decoder (line 15) | typedef Decoder = T Function(dynamic data); type Progress (line 17) | typedef Progress = Function(double percent); type ResponseInterceptor (line 19) | typedef ResponseInterceptor = Future?> Function( class GetHttpClient (line 22) | class GetHttpClient { method addAuthenticator (line 71) | void addAuthenticator(RequestModifier auth) method addRequestModifier (line 75) | void addRequestModifier(RequestModifier interceptor) method removeRequestModifier (line 79) | void removeRequestModifier(RequestModifier interceptor) method addResponseModifier (line 83) | void addResponseModifier(ResponseModifier interceptor) method removeResponseModifier (line 87) | void removeResponseModifier(ResponseModifier interceptor) method createUri (line 91) | Uri createUri(String? url, Map? query) method _requestWithBody (line 102) | Future> _requestWithBody( method _setContentLength (line 173) | void _setContentLength(Map headers, int contentLength) method _trackProgress (line 179) | Stream> _trackProgress( method _setSimpleHeaders (line 200) | void _setSimpleHeaders( method _performRequest (line 210) | Future> _performRequest( method _get (line 273) | Future> _get( method _responseInterceptor (line 296) | ResponseInterceptor? _responseInterceptor( method _request (line 307) | Future> _request( method _delete (line 329) | Request _delete( method send (line 349) | Future> send(Request request) method patch (line 363) | Future> patch( method post (line 399) | Future> post( method request (line 435) | Future> request( method put (line 471) | Future> put( method get (line 506) | Future> get( method delete (line 530) | Future> delete(String url, method close (line 553) | void close() FILE: lib/get_connect/http/src/http/html/file_decoder_html.dart function fileToBytes (line 3) | List fileToBytes(dynamic data) FILE: lib/get_connect/http/src/http/html/http_request_html.dart class HttpRequestImpl (line 13) | class HttpRequestImpl implements IClient { method send (line 25) | Future> send(Request request) method close (line 94) | void close() FILE: lib/get_connect/http/src/http/interface/request_base.dart class IClient (line 5) | abstract class IClient { method send (line 7) | Future> send(Request request) method close (line 10) | void close() FILE: lib/get_connect/http/src/http/io/file_decoder_io.dart function fileToBytes (line 3) | List fileToBytes(dynamic data) function writeOnFile (line 20) | void writeOnFile(List bytes) FILE: lib/get_connect/http/src/http/io/http_request_io.dart class IoRedirectInfo (line 12) | class IoRedirectInfo implements RedirectInfo { class IoHttpHeaders (line 27) | class IoHttpHeaders implements HttpHeaders { method add (line 61) | void add(String name, Object value, {bool preserveHeaderCase = false}) method clear (line 66) | void clear() method forEach (line 71) | void forEach(void Function(String name, List values) action) method noFolding (line 76) | void noFolding(String name) method remove (line 81) | void remove(String name, Object value) method removeAll (line 86) | void removeAll(String name) method set (line 91) | void set(String name, Object value, {bool preserveHeaderCase = false}) method value (line 96) | String? value(String name) class IOHttpResponse (line 141) | class IOHttpResponse implements HttpClientResponse { method any (line 146) | Future any(bool Function(List element) test) method asBroadcastStream (line 151) | Stream> asBroadcastStream( method asyncExpand (line 158) | Stream asyncExpand(Stream? Function(List event) convert) method asyncMap (line 163) | Stream asyncMap(FutureOr Function(List event) convert) method cast (line 168) | Stream cast() method contains (line 173) | Future contains(Object? needle) method distinct (line 181) | Stream> distinct( method drain (line 187) | Future drain([E? futureValue]) method elementAt (line 192) | Future> elementAt(int index) method every (line 197) | Future every(bool Function(List element) test) method expand (line 202) | Stream expand(Iterable Function(List element) convert) method firstWhere (line 210) | Future> firstWhere(bool Function(List element) test, method fold (line 216) | Future fold( method forEach (line 222) | Future forEach(void Function(List element) action) method handleError (line 227) | Stream> handleError(Function onError, method join (line 245) | Future join([String separator = ""]) method lastWhere (line 253) | Future> lastWhere(bool Function(List element) test, method listen (line 262) | StreamSubscription> listen(void Function(List event)? o... method map (line 269) | Stream map(S Function(List event) convert) method pipe (line 277) | Future pipe(StreamConsumer> streamConsumer) method redirect (line 285) | Future redirect( method reduce (line 297) | Future> reduce( method singleWhere (line 306) | Future> singleWhere(bool Function(List element) test, method skip (line 312) | Stream> skip(int count) method skipWhile (line 317) | Stream> skipWhile(bool Function(List element) test) method take (line 325) | Stream> take(int count) method takeWhile (line 330) | Stream> takeWhile(bool Function(List element) test) method timeout (line 335) | Stream> timeout(Duration timeLimit, method toList (line 341) | Future>> toList() method toSet (line 346) | Future>> toSet() method transform (line 351) | Stream transform(StreamTransformer, S> streamTransformer) method where (line 356) | Stream> where(bool Function(List event) test) class HttpRequestImpl (line 362) | class HttpRequestImpl extends IClient { method send (line 387) | Future> send(Request request) method close (line 442) | void close() FILE: lib/get_connect/http/src/http/mock/http_request_mock.dart type MockClientHandler (line 6) | typedef MockClientHandler = Future Function(Request request); class MockClient (line 8) | class MockClient extends IClient { method send (line 17) | Future> send(Request request) method close (line 46) | void close() FILE: lib/get_connect/http/src/http/request/http_request.dart function createHttp (line 6) | HttpRequestImpl createHttp({ FILE: lib/get_connect/http/src/http/stub/file_decoder_stub.dart function writeOnFile (line 1) | void writeOnFile(List bytes) function fileToBytes (line 3) | List fileToBytes(dynamic data) FILE: lib/get_connect/http/src/http/stub/http_request_stub.dart class HttpRequestImpl (line 6) | class HttpRequestImpl extends IClient { method close (line 14) | void close() method send (line 17) | Future> send(Request request) FILE: lib/get_connect/http/src/http/utils/body_decoder.dart function bodyDecoded (line 6) | T? bodyDecoded(Request request, String stringBody, String? mimeType) FILE: lib/get_connect/http/src/interceptors/get_modifiers.dart type RequestModifier (line 6) | typedef RequestModifier = FutureOr> Function(Request r... type ResponseModifier (line 8) | typedef ResponseModifier = FutureOr Function( type HandlerExecute (line 11) | typedef HandlerExecute = Future> Function(); class GetModifier (line 13) | class GetModifier { method addRequestModifier (line 18) | void addRequestModifier(RequestModifier interceptor) method removeRequestModifier (line 22) | void removeRequestModifier(RequestModifier interceptor) method addResponseModifier (line 26) | void addResponseModifier(ResponseModifier interceptor) method removeResponseModifier (line 30) | void removeResponseModifier(ResponseModifier interceptor) method modifyRequest (line 34) | Future> modifyRequest(Request request) method modifyResponse (line 45) | Future> modifyResponse( FILE: lib/get_connect/http/src/multipart/form_data.dart class FormData (line 9) | class FormData { method _getBoundary (line 27) | String _getBoundary() method _fieldHeader (line 45) | String _fieldHeader(String name, String value) method _fileHeader (line 58) | String _fileHeader(MapEntry file) method toBytes (line 92) | Future> toBytes() method _encode (line 96) | Stream> _encode() FILE: lib/get_connect/http/src/multipart/multipart_file.dart class MultipartFile (line 6) | class MultipartFile { FILE: lib/get_connect/http/src/request/request.dart class Request (line 8) | class Request { method copyWith (line 82) | Request copyWith({ function toStream (line 117) | Stream> toStream() function toBytes (line 121) | Future toBytes() function bytesToString (line 135) | Future bytesToString([Encoding encoding = utf8]) FILE: lib/get_connect/http/src/response/client_response.dart class RedirectInfo (line 2) | abstract interface class RedirectInfo { class HttpClientResponse (line 13) | abstract interface class HttpClientResponse implements Stream> { method redirect (line 77) | Future redirect( class HttpHeaders (line 132) | abstract interface class HttpHeaders { method value (line 301) | String? value(String name) method add (line 321) | void add(String name, Object value, {bool preserveHeaderCase = false}) method set (line 327) | void set(String name, Object value, {bool preserveHeaderCase = false}) method remove (line 337) | void remove(String name, Object value) method removeAll (line 345) | void removeAll(String name) method forEach (line 354) | void forEach(void Function(String name, List values) action) method noFolding (line 362) | void noFolding(String name) method clear (line 369) | void clear() FILE: lib/get_connect/http/src/response/response.dart class GraphQLResponse (line 8) | class GraphQLResponse extends Response { class Response (line 25) | class Response { method copyWith (line 36) | Response copyWith({ function bodyBytesToString (line 96) | Future bodyBytesToString( function _encodingForHeaders (line 105) | Encoding _encodingForHeaders(Map headers) function _encodingForCharset (line 112) | Encoding _encodingForCharset(String? charset, [Encoding fallback = utf8]) function _contentTypeForHeaders (line 120) | HeaderValue _contentTypeForHeaders(Map headers) class HeaderValue (line 126) | class HeaderValue { method parse (line 137) | HeaderValue parse(String value, method _ensureParameters (line 148) | void _ensureParameters() method toString (line 159) | String toString() method _parse (line 174) | void _parse(String value, String parameterSeparator, String? valueSepa... method done (line 178) | bool done() method bump (line 180) | void bump() method parseValue (line 187) | String parseValue() method expect (line 201) | void expect(String expected) method maybeExpect (line 208) | void maybeExpect(String expected) method parseParameters (line 212) | void parseParameters() method parseParameterName (line 216) | String parseParameterName() method parseParameterValue (line 231) | String? parseParameterValue() FILE: lib/get_connect/http/src/status/http_status.dart class HttpStatus (line 1) | class HttpStatus { method between (line 85) | bool between(int begin, int end) FILE: lib/get_connect/http/src/utils/utils.dart function isTokenChar (line 5) | bool isTokenChar(int byte) function isValueChar (line 9) | bool isValueChar(int byte) class CharCode (line 15) | class CharCode { function validateField (line 45) | String validateField(String field) function isPlainAscii (line 65) | bool isPlainAscii(String string) function browserEncode (line 70) | String browserEncode(String value) FILE: lib/get_connect/sockets/sockets.dart class GetSocket (line 5) | class GetSocket extends BaseWebSocket { FILE: lib/get_connect/sockets/src/socket_notifier.dart type CloseSocket (line 4) | typedef CloseSocket = void Function(Close); type MessageSocket (line 7) | typedef MessageSocket = void Function(dynamic val); type OpenSocket (line 10) | typedef OpenSocket = void Function(); class Close (line 13) | class Close { method toString (line 20) | String toString() class SocketNotifier (line 27) | class SocketNotifier { method addCloses (line 36) | void addCloses(CloseSocket socket) method addErrors (line 41) | void addErrors(CloseSocket socket) method addEvents (line 46) | void addEvents(String event, MessageSocket socket) method addMessages (line 51) | void addMessages(MessageSocket socket) method dispose (line 56) | void dispose() method notifyClose (line 64) | void notifyClose(Close err) method notifyData (line 71) | void notifyData(dynamic data) method notifyError (line 81) | void notifyError(Close err) method _tryOn (line 88) | void _tryOn(String message) FILE: lib/get_connect/sockets/src/sockets_html.dart class BaseWebSocket (line 10) | class BaseWebSocket { method close (line 30) | void close([int? status, String? reason]) method connect (line 43) | void connect() method dispose (line 78) | void dispose() method emit (line 84) | void emit(String event, dynamic data) method on (line 88) | void on(String event, MessageSocket message) method onClose (line 92) | void onClose(CloseSocket fn) method onError (line 96) | void onError(CloseSocket fn) method onMessage (line 100) | void onMessage(MessageSocket fn) method onOpen (line 105) | void onOpen(OpenSocket fn) method send (line 109) | void send(Object data) type ConnectionStatus (line 121) | enum ConnectionStatus { FILE: lib/get_connect/sockets/src/sockets_io.dart class BaseWebSocket (line 9) | class BaseWebSocket { method close (line 24) | void close([int? status, String? reason]) method connect (line 29) | Future connect() method dispose (line 61) | void dispose() method emit (line 67) | void emit(String event, dynamic data) method on (line 71) | void on(String event, MessageSocket message) method onClose (line 75) | void onClose(CloseSocket fn) method onError (line 79) | void onError(CloseSocket fn) method onMessage (line 83) | void onMessage(MessageSocket fn) method onOpen (line 88) | void onOpen(OpenSocket fn) method send (line 92) | void send(dynamic data) method _connectForSelfSignedCert (line 102) | Future _connectForSelfSignedCert(String url) type ConnectionStatus (line 135) | enum ConnectionStatus { FILE: lib/get_connect/sockets/src/sockets_stub.dart class BaseWebSocket (line 3) | class BaseWebSocket { method connect (line 15) | Future connect() method onOpen (line 19) | void onOpen(OpenSocket fn) method onClose (line 23) | void onClose(CloseSocket fn) method onError (line 27) | void onError(CloseSocket fn) method onMessage (line 31) | void onMessage(MessageSocket fn) method on (line 35) | void on(String event, MessageSocket message) method close (line 39) | void close([int? status, String? reason]) method send (line 43) | void send(dynamic data) method dispose (line 47) | void dispose() method emit (line 51) | void emit(String event, dynamic data) FILE: lib/get_core/src/flutter_engine.dart class Engine (line 3) | class Engine { FILE: lib/get_core/src/get_interface.dart class GetInterface (line 8) | abstract class GetInterface { FILE: lib/get_core/src/get_main.dart class _GetImpl (line 9) | class _GetImpl extends GetInterface {} FILE: lib/get_core/src/log.dart type LogWriterCallback (line 5) | typedef LogWriterCallback = void Function(String text, {bool isError}); function defaultLogWriterCallback (line 8) | void defaultLogWriterCallback(String value, {bool isError = false}) FILE: lib/get_core/src/smart_management.dart type SmartManagement (line 18) | enum SmartManagement { FILE: lib/get_core/src/typedefs.dart type ValueUpdater (line 1) | typedef ValueUpdater = T Function(); FILE: lib/get_instance/src/bindings_interface.dart class BindingsInterface (line 4) | abstract class BindingsInterface { method dependencies (line 5) | T dependencies() class Bindings (line 14) | @Deprecated('Use Binding instead') method dependencies (line 17) | void dependencies() type BindingBuilderCallback (line 68) | typedef BindingBuilderCallback = void Function(); FILE: lib/get_instance/src/extension_instance.dart class InstanceInfo (line 9) | class InstanceInfo { method toString (line 25) | String toString() function resetInstance (line 38) | bool resetInstance({bool clearRouteBindings = true}) function call (line 49) | T call() function put (line 73) | S put( function lazyPut (line 108) | void lazyPut( function spawn (line 139) | void spawn( function _insert (line 153) | void _insert({ function _initDependencies (line 191) | S? _initDependencies({String? name}) function getInstanceInfo (line 212) | InstanceInfo getInstanceInfo({String? tag}) function _getDependency (line 224) | _InstanceBuilderFactory? _getDependency({String? tag, String? key}) function markAsDirty (line 235) | void markAsDirty({String? tag, String? key}) function _startController (line 246) | S _startController({String? tag}) function putOrFind (line 263) | S putOrFind(InstanceBuilderCallback dep, {String? tag}) function find (line 278) | S find({String? tag}) function findOrNull (line 303) | S? findOrNull({String? tag}) function replace (line 313) | void replace

(P child, {String? tag}) function lazyReplace (line 327) | void lazyReplace

(InstanceBuilderCallback

builder, function _getKey (line 337) | String _getKey(Type type, String? name) function delete (line 357) | bool delete({String? tag, String? key, bool force = false}) function deleteAll (line 420) | void deleteAll({bool force = false}) function reloadAll (line 427) | void reloadAll({bool force = false}) function reload (line 439) | void reload({ function isRegistered (line 475) | bool isRegistered({String? tag}) function isPrepared (line 480) | bool isPrepared({String? tag}) type InstanceBuilderCallback (line 495) | typedef InstanceBuilderCallback = S Function(); type InstanceCreateBuilderCallback (line 497) | typedef InstanceCreateBuilderCallback = S Function(BuildContext _); type AsyncInstanceBuilderCallback (line 503) | typedef AsyncInstanceBuilderCallback = Future Function(); class _InstanceBuilderFactory (line 506) | class _InstanceBuilderFactory { method _showInitLog (line 544) | void _showInitLog() method getDependency (line 553) | S getDependency() FILE: lib/get_instance/src/lifecycle.dart function onInit (line 19) | void onInit() function onReady (line 26) | void onReady() function onClose (line 34) | void onClose() function onStart (line 48) | void onStart() function onDelete (line 63) | void onDelete() class GetxService (line 87) | abstract class GetxService with GetLifeCycleMixin, GetxServiceMixin {} FILE: lib/get_navigation/src/bottomsheet/bottomsheet.dart class GetModalBottomSheetRoute (line 6) | class GetModalBottomSheetRoute extends PopupRoute { method dispose (line 61) | void dispose() method createAnimation (line 67) | Animation createAnimation() method createAnimationController (line 75) | AnimationController createAnimationController() method buildPage (line 85) | Widget buildPage(BuildContext context, Animation animation, class _GetModalBottomSheet (line 116) | class _GetModalBottomSheet extends StatefulWidget { method createState (line 138) | _GetModalBottomSheetState createState() class _GetModalBottomSheetState (line 141) | class _GetModalBottomSheetState extends State<_GetModalBottomSheet> { method _getRouteLabel (line 142) | String _getRouteLabel(MaterialLocalizations localizations) method build (line 152) | Widget build(BuildContext context) class _GetPerModalBottomSheet (line 215) | class _GetPerModalBottomSheet extends StatefulWidget { method createState (line 238) | _GetPerModalBottomSheetState createState() class _GetPerModalBottomSheetState (line 243) | class _GetPerModalBottomSheetState method _getRouteLabel (line 245) | String _getRouteLabel(MaterialLocalizations localizations) method build (line 255) | Widget build(BuildContext context) class _GetModalBottomSheetLayout (line 318) | class _GetModalBottomSheetLayout extends SingleChildLayoutDelegate { method getConstraintsForChild (line 325) | BoxConstraints getConstraintsForChild(BoxConstraints constraints) method getPositionForChild (line 337) | Offset getPositionForChild(Size size, Size childSize) method shouldRelayout (line 342) | bool shouldRelayout(_GetModalBottomSheetLayout oldDelegate) FILE: lib/get_navigation/src/dialog/dialog_route.dart class GetDialogRoute (line 5) | class GetDialogRoute extends PopupRoute { method dispose (line 30) | void dispose() method buildPage (line 50) | Widget buildPage(BuildContext context, Animation animation, method buildTransitions (line 60) | Widget buildTransitions(BuildContext context, Animation animat... FILE: lib/get_navigation/src/extension_navigation.dart function bottomSheet (line 16) | Future bottomSheet( function dialog (line 68) | Future dialog( function generalDialog (line 117) | Future generalDialog( function defaultDialog (line 147) | Future defaultDialog({ function rawSnackbar (line 289) | SnackbarController rawSnackbar({ function showSnackbar (line 377) | SnackbarController showSnackbar(GetSnackBar snackbar) function snackbar (line 383) | SnackbarController snackbar( function to (line 516) | Future? to(Widget Function() page, function toNamed (line 589) | Future? toNamed( function offNamed (line 630) | Future? offNamed( function until (line 666) | void until(bool Function(GetPage) predicate, {String? id}) function offNamedUntil (line 690) | Future? offNamedUntil( function offAndToNamed (line 722) | Future? offAndToNamed( function removeRoute (line 746) | void removeRoute(String name, {String? id}) function offAllNamed (line 770) | Future? offAllNamed( function back (line 811) | void back({ function backLegacy (line 845) | void backLegacy({ function closeAllDialogsAndBottomSheets (line 876) | void closeAllDialogsAndBottomSheets( function closeAllDialogs (line 885) | void closeAllDialogs({ function closeDialog (line 894) | void closeDialog({String? id, T? result}) function closeBottomSheet (line 901) | void closeBottomSheet({String? id, T? result}) function closeOverlay (line 909) | void closeOverlay({ function closeAllBottomSheets (line 916) | void closeAllBottomSheets({ function closeAllOverlays (line 924) | void closeAllOverlays() function close (line 935) | void close({ function handleClose (line 943) | void handleClose(bool closeCondition, Function closeAllFunction, function off (line 986) | Future? off( function offUntil (line 1023) | Future offUntil( function offAll (line 1066) | Future? offAll( function _cleanRouteName (line 1105) | String _cleanRouteName(String name) function updateLocale (line 1146) | Future updateLocale(Locale l) function forceAppUpdate (line 1164) | Future forceAppUpdate() function appUpdate (line 1168) | void appUpdate() function changeTheme (line 1170) | void changeTheme(ThemeData theme) function changeThemeMode (line 1174) | void changeThemeMode(ThemeMode themeMode) function addKey (line 1178) | GlobalKey? addKey(GlobalKey newKey) function nestedKey (line 1182) | GetDelegate? nestedKey(String? key) function searchDelegate (line 1186) | GetDelegate searchDelegate(String? k) function closeAllSnackbars (line 1220) | void closeAllSnackbars() function closeCurrentSnackbar (line 1224) | Future closeCurrentSnackbar() function args (line 1354) | T args() function delegate (line 1380) | TDelegate? delegate, TPage>() function showOverlay (line 1385) | Future showOverlay({ FILE: lib/get_navigation/src/root/get_cupertino_app.dart class GetCupertinoApp (line 12) | class GetCupertinoApp extends StatelessWidget { method build (line 188) | Widget build(BuildContext context) FILE: lib/get_navigation/src/root/get_material_app.dart class GetMaterialApp (line 10) | class GetMaterialApp extends StatelessWidget { method build (line 195) | Widget build(BuildContext context) FILE: lib/get_navigation/src/root/get_root.dart class ConfigData (line 8) | class ConfigData { method copyWith (line 94) | ConfigData copyWith({ class GetRoot (line 279) | class GetRoot extends StatefulWidget { method createState (line 288) | State createState() method of (line 292) | GetRootState of(BuildContext context) class GetRootState (line 313) | class GetRootState extends State with WidgetsBindingObserver { method initState (line 326) | void initState() method onClose (line 343) | void onClose() method dispose (line 355) | void dispose() method onInit (line 360) | void onInit() method onReady (line 440) | void onReady() method getThemeTransition (line 444) | Transition? getThemeTransition() method didChangeLocales (line 463) | void didChangeLocales(List? locales) method setTheme (line 472) | void setTheme(ThemeData value) method setThemeMode (line 485) | void setThemeMode(ThemeMode value) method restartApp (line 490) | void restartApp() method update (line 495) | void update() method addKey (line 509) | GlobalKey? addKey(GlobalKey newKey) method nestedKey (line 516) | GetDelegate? nestedKey(String? key) method build (line 532) | Widget build(BuildContext context) method cleanRouteName (line 536) | String cleanRouteName(String name) FILE: lib/get_navigation/src/root/internacionalization.dart class Translations (line 9) | abstract class Translations { FILE: lib/get_navigation/src/router_report.dart class RouterReportManager (line 5) | class RouterReportManager { method dispose (line 23) | void dispose() method printInstanceStack (line 27) | void printInstanceStack() method reportCurrentRoute (line 34) | void reportCurrentRoute(T newRoute) method reportDependencyLinkedToRoute (line 40) | void reportDependencyLinkedToRoute(String dependencyKey) method clearRouteKeys (line 49) | void clearRouteKeys() method appendRouteByCreate (line 54) | void appendRouteByCreate(GetLifeCycleMixin i) method reportRouteDispose (line 60) | void reportRouteDispose(T disposed) method reportRouteWillDispose (line 69) | void reportRouteWillDispose(T disposed) method _removeDependencyByRoute (line 98) | void _removeDependencyByRoute(T routeName) FILE: lib/get_navigation/src/routes/circular_reveal_clipper.dart class CircularRevealClipper (line 6) | class CircularRevealClipper extends CustomClipper { method getClip (line 22) | Path getClip(Size size) method shouldReclip (line 39) | bool shouldReclip(CustomClipper oldClipper) method calcMaxRadius (line 41) | double calcMaxRadius(Size size, Offset center) FILE: lib/get_navigation/src/routes/custom_transition.dart class CustomTransition (line 4) | abstract class CustomTransition { method buildTransition (line 5) | Widget buildTransition( FILE: lib/get_navigation/src/routes/default_route.dart function initState (line 9) | void initState() function dispose (line 15) | void dispose() function install (line 23) | void install() function dispose (line 29) | void dispose() class GetPageRoute (line 35) | class GetPageRoute extends PageRoute method dispose (line 108) | void dispose() method _getChild (line 116) | Widget _getChild() method buildContent (line 149) | Widget buildContent(BuildContext context) FILE: lib/get_navigation/src/routes/default_transitions.dart class LeftToRightFadeTransition (line 6) | class LeftToRightFadeTransition { method buildTransitions (line 7) | Widget buildTransitions( class RightToLeftFadeTransition (line 32) | class RightToLeftFadeTransition { method buildTransitions (line 33) | Widget buildTransitions( class NoTransition (line 58) | class NoTransition { method buildTransitions (line 59) | Widget buildTransitions( class FadeInTransition (line 70) | class FadeInTransition { method buildTransitions (line 71) | Widget buildTransitions( class SlideDownTransition (line 82) | class SlideDownTransition { method buildTransitions (line 83) | Widget buildTransitions( class SlideLeftTransition (line 100) | class SlideLeftTransition { method buildTransitions (line 101) | Widget buildTransitions( class SlideRightTransition (line 118) | class SlideRightTransition { method buildTransitions (line 119) | Widget buildTransitions( class SlideTopTransition (line 136) | class SlideTopTransition { method buildTransitions (line 137) | Widget buildTransitions( class ZoomInTransition (line 154) | class ZoomInTransition { method buildTransitions (line 155) | Widget buildTransitions( class SizeTransitions (line 169) | class SizeTransitions { method buildTransitions (line 170) | Widget buildTransitions( class CircularRevealTransition (line 190) | class CircularRevealTransition { method buildTransitions (line 191) | Widget buildTransitions( FILE: lib/get_navigation/src/routes/get_information_parser.dart class GetInformationParser (line 6) | class GetInformationParser extends RouteInformationParser { method parseRouteInformation (line 20) | SynchronousFuture parseRouteInformation( method restoreRouteInformation (line 43) | RouteInformation restoreRouteInformation(RouteDecoder configuration) FILE: lib/get_navigation/src/routes/get_navigation_interface.dart type PopMode (line 27) | enum PopMode { type PreventDuplicateHandlingMode (line 34) | enum PreventDuplicateHandlingMode { function to (line 51) | Future to( function popModeUntil (line 68) | Future popModeUntil( function off (line 73) | Future off( function offAll (line 90) | Future? offAll( function toNamed (line 107) | Future toNamed( function offNamed (line 115) | Future offNamed( function offAllNamed (line 122) | Future? offAllNamed( function offNamedUntil (line 130) | Future? offNamedUntil( function toNamedAndOffUntil (line 138) | Future toNamedAndOffUntil( function offUntil (line 144) | Future offUntil( function removeRoute (line 150) | void removeRoute(String name) function back (line 152) | void back([T? result]) function backAndtoNamed (line 154) | Future backAndtoNamed(String page, {T? result, Object? argumen... function backUntil (line 156) | void backUntil(bool Function(GetPage) predicate) function goToUnknownPage (line 158) | void goToUnknownPage([bool clearPages = true]) FILE: lib/get_navigation/src/routes/get_navigator.dart class GetNavigator (line 3) | class GetNavigator extends Navigator { FILE: lib/get_navigation/src/routes/get_route.dart class GetPage (line 13) | class GetPage extends Page { method _defaultPopInvokedHandler (line 56) | void _defaultPopInvokedHandler(bool didPop, Object? result) method copyWith (line 103) | GetPage copyWith({ method createRoute (line 176) | Route createRoute(BuildContext context) method _nameToRegex (line 187) | PathDecoded _nameToRegex(String path) method recursiveReplace (line 190) | String recursiveReplace(Match pattern) method toString (line 215) | String toString() class PathDecoded (line 224) | @immutable FILE: lib/get_navigation/src/routes/get_router_delegate.dart class GetDelegate (line 10) | class GetDelegate extends RouterDelegate method addPages (line 54) | void addPages(List getPages) method clearRouteTree (line 58) | void clearRouteTree() method addPage (line 62) | void addPage(GetPage getPage) method removePage (line 66) | void removePage(GetPage getPage) method matchRoute (line 70) | RouteDecoder matchRoute(String name, {PageSettings? arguments}) method runMiddleware (line 106) | Future runMiddleware(RouteDecoder config) method _unsafeHistoryAdd (line 139) | Future _unsafeHistoryAdd(RouteDecoder config) method _unsafeHistoryRemoveAt (line 151) | Future _unsafeHistoryRemoveAt(int index, T result) method arguments (line 166) | T arguments() method _pushHistory (line 178) | Future _pushHistory(RouteDecoder config) method _popHistory (line 201) | Future _popHistory(T result) method _doPopHistory (line 206) | Future _doPopHistory(T result) method _popPage (line 210) | Future _popPage(T result) method _doPopPage (line 216) | Future _doPopPage(T result) method _pop (line 252) | Future _pop(PopMode mode, T result) method popHistory (line 261) | Future popHistory(T result) method _canPopHistory (line 265) | bool _canPopHistory() method canPopHistory (line 269) | Future canPopHistory() method _canPopPage (line 273) | bool _canPopPage() method canPopPage (line 279) | Future canPopPage() method _canPop (line 283) | bool _canPop(mode) method getVisualPages (line 296) | Iterable getVisualPages(RouteDecoder? currentHistory) method build (line 310) | Widget build(BuildContext context) method goToUnknownPage (line 332) | Future goToUnknownPage([bool clearPages = false]) method _popWithResult (line 342) | void _popWithResult([T? result]) method toNamed (line 348) | Future toNamed( method to (line 366) | Future to( method off (line 418) | Future off( method offAll (line 454) | Future? offAll( method offAllNamed (line 497) | Future? offAllNamed( method offNamedUntil (line 516) | Future? offNamedUntil( method offNamed (line 537) | Future offNamed( method toNamedAndOffUntil (line 551) | Future toNamedAndOffUntil( method offUntil (line 570) | Future offUntil( method removeRoute (line 583) | void removeRoute(String name) method _checkIfCanBack (line 591) | void _checkIfCanBack() method backAndtoNamed (line 603) | Future backAndtoNamed(String page, method popModeUntil (line 616) | Future popModeUntil( method backUntil (line 636) | void backUntil(bool Function(GetPage) predicate) method _replace (line 644) | Future _replace(PageSettings arguments, GetPage page) method _replaceNamed (line 661) | Future _replaceNamed(RouteDecoder activePage) method _cleanRouteName (line 676) | String _cleanRouteName(String name) method _buildPageSettings (line 687) | PageSettings _buildPageSettings(String page, [Object? data]) method _getRouteDecoder (line 693) | RouteDecoder? _getRouteDecoder(PageSettings arguments) method _configureRouterDecoder (line 709) | RouteDecoder _configureRouterDecoder( method _push (line 728) | Future _push(RouteDecoder decoder, {bool rebuildStack = true}) method setNewRoutePath (line 771) | Future setNewRoutePath(RouteDecoder configuration) method handlePopupRoutes (line 788) | Future handlePopupRoutes({ method popRoute (line 803) | Future popRoute({ method back (line 821) | void back([T? result]) method _onPopVisualRoute (line 827) | bool _onPopVisualRoute(Route route, dynamic result) FILE: lib/get_navigation/src/routes/get_transition_mixin.dart class GetBackGestureDetector (line 24) | class GetBackGestureDetector extends StatefulWidget { method createState (line 44) | GetBackGestureDetectorState createState() class GetBackGestureDetectorState (line 48) | class GetBackGestureDetectorState extends State { method dragUpdate (line 161) | void dragUpdate(double delta) method dragEnd (line 167) | void dragEnd(double velocity) function buildContent (line 296) | Widget buildContent(BuildContext context) function buildPage (line 299) | Widget buildPage(BuildContext context, Animation animation, function buildTransitions (line 311) | Widget buildTransitions(BuildContext context, Animation animation, function canTransitionTo (line 318) | bool canTransitionTo(TransitionRoute nextRoute) function didChangePrevious (line 331) | void didChangePrevious(Route? previousRoute) function canSwipe (line 343) | bool canSwipe(GetPageRoute route) function buildPageTransitions (line 360) | Widget buildPageTransitions( function isPopGestureInProgress (line 767) | bool isPopGestureInProgress(BuildContext context) function _isPopGestureEnabled (line 772) | bool _isPopGestureEnabled( function _startPopGesture (line 805) | GetBackGestureController _startPopGesture( class _DirectionalityDragGestureRecognizer (line 815) | class _DirectionalityDragGestureRecognizer method handleEvent (line 831) | void handleEvent(PointerEvent event) FILE: lib/get_navigation/src/routes/modules.dart class Dependencies (line 6) | class Dependencies { method lazyPut (line 7) | void lazyPut(InstanceBuilderCallback builder, method call (line 12) | S call() method spawn (line 16) | void spawn(InstanceBuilderCallback builder, method find (line 20) | S find({String? tag}) method put (line 22) | S put(S dependency, method delete (line 28) | Future delete({String? tag, bool force = false}) method deleteAll (line 31) | Future deleteAll({bool force = false}) method reloadAll (line 34) | void reloadAll({bool force = false}) method reload (line 36) | void reload({String? tag, String? key, bool force = false}) method isRegistered (line 39) | bool isRegistered({String? tag}) method isPrepared (line 41) | bool isPrepared({String? tag}) method replace (line 43) | void replace

(P child, {String? tag}) method lazyReplace (line 50) | void lazyReplace

(InstanceBuilderCallback

builder, class Module (line 59) | abstract class Module extends StatefulWidget { method view (line 62) | Widget view(BuildContext context) method dependencies (line 64) | void dependencies(Dependencies i) method createState (line 67) | ModuleState createState() class ModuleState (line 70) | class ModuleState extends State { method initState (line 72) | void initState() method dispose (line 79) | void dispose() method build (line 85) | Widget build(BuildContext context) FILE: lib/get_navigation/src/routes/new_path_route.dart class RouteMatcher (line 7) | class RouteMatcher { method addRoute (line 10) | RouteNode addRoute(String path) method removeRoute (line 27) | void removeRoute(String path) method _findChild (line 53) | RouteNode? _findChild(RouteNode currentNode, String segment) method matchRoute (line 58) | MatchResult? matchRoute(String path) method _parsePath (line 91) | List _parsePath(String path) class RouteTreeResult (line 96) | class RouteTreeResult { method toString (line 106) | String toString() method configure (line 110) | RouteTreeResult configure(String page, Object? arguments) method copyWith (line 120) | RouteTreeResult copyWith({ class RouteTree (line 131) | class RouteTree { method addRoute (line 136) | void addRoute(GetPage route) method addRoutes (line 142) | void addRoutes(List routes) method handleChild (line 148) | void handleChild(GetPage route) method removeRoute (line 164) | void removeRoute(GetPage route) method removeRoutes (line 169) | void removeRoutes(List routes) method matchRoute (line 175) | RouteTreeResult? matchRoute(String path) class MatchResult (line 189) | class MatchResult { method toString (line 206) | String toString() class RouteNode (line 211) | class RouteNode { method addChild (line 232) | void addChild(RouteNode child) method findChild (line 237) | RouteNode? findChild(String name) method matches (line 241) | bool matches(String name) method toString (line 246) | String toString() function firstWhereOrNull (line 251) | T? firstWhereOrNull(bool Function(T element) test) FILE: lib/get_navigation/src/routes/observers/route_observer.dart function _extractRouteName (line 11) | String? _extractRouteName(Route? route) class GetObserver (line 31) | class GetObserver extends NavigatorObserver { method didPop (line 39) | void didPop(Route route, Route? previousRoute) method didPush (line 77) | void didPush(Route route, Route? previousRoute) method didRemove (line 112) | void didRemove(Route route, Route? previousRoute) method didReplace (line 138) | void didReplace({Route? newRoute, Route? oldRoute}) class Routing (line 175) | class Routing { method update (line 196) | void update(void Function(Routing value) fn) class _RouteData (line 202) | class _RouteData { FILE: lib/get_navigation/src/routes/page_settings.dart class PageSettings (line 51) | class PageSettings extends RouteSettings { method toString (line 73) | String toString() method copy (line 75) | PageSettings copy({ FILE: lib/get_navigation/src/routes/parse_route.dart class RouteDecoder (line 5) | @immutable method routeOrUnknown (line 30) | GetPage routeOrUnknown(GetPage onUnknow) method arguments (line 50) | T? arguments() method toString (line 80) | String toString() class ParseRouteTree (line 84) | class ParseRouteTree { method matchRoute (line 91) | RouteDecoder matchRoute(String name, {PageSettings? arguments}) method addRoutes (line 153) | void addRoutes(List> getPages) method removeRoutes (line 159) | void removeRoutes(List> getPages) method removeRoute (line 165) | void removeRoute(GetPage route) method addRoute (line 172) | void addRoute(GetPage route) method _flattenPage (line 181) | List _flattenPage(GetPage route) method _addChild (line 241) | GetPage _addChild( method _findRoute (line 259) | GetPage? _findRoute(String name) method _parseParams (line 267) | Map _parseParams(String path, PathDecoded routePath) function firstWhereOrNull (line 289) | T? firstWhereOrNull(bool Function(T element) test) FILE: lib/get_navigation/src/routes/route_middleware.dart class GetMiddleware (line 11) | abstract class GetMiddleware { method redirect (line 42) | RouteSettings? redirect(String? route) method redirectDelegate (line 61) | FutureOr redirectDelegate(RouteDecoder route) method onPageCalled (line 73) | GetPage? onPageCalled(GetPage? page) method onBindingsStart (line 88) | List? onBindingsStart(List? bindings) method onPageBuildStart (line 91) | GetPageBuilder? onPageBuildStart(GetPageBuilder? page) method onPageBuilt (line 96) | Widget onPageBuilt(Widget page) method onPageDispose (line 98) | void onPageDispose() class MiddlewareRunner (line 101) | class MiddlewareRunner { method _compareMiddleware (line 109) | int _compareMiddleware(GetMiddleware a, GetMiddleware b) method runOnPageCalled (line 112) | GetPage? runOnPageCalled(GetPage? page) method runRedirect (line 119) | RouteSettings? runRedirect(String? route) method runOnBindingsStart (line 129) | List? runOnBindingsStart(List? bindings) method runOnPageBuildStart (line 136) | GetPageBuilder? runOnPageBuildStart(GetPageBuilder? page) method runOnPageBuilt (line 143) | Widget runOnPageBuilt(Widget page) method runOnPageDispose (line 150) | void runOnPageDispose() class PageRedirect (line 157) | class PageRedirect { method getPageToRoute (line 171) | GetPageRoute getPageToRoute( method needRecheck (line 205) | bool needRecheck(BuildContext context) method addPageParameter (line 234) | void addPageParameter(GetPage route) FILE: lib/get_navigation/src/routes/route_report.dart class RouteReport (line 6) | class RouteReport extends StatefulWidget { method createState (line 11) | RouteReportState createState() class RouteReportState (line 14) | class RouteReportState extends State with RouteReportMixin { method initState (line 16) | void initState() method dispose (line 22) | void dispose() method build (line 28) | Widget build(BuildContext context) FILE: lib/get_navigation/src/routes/router_outlet.dart class RouterOutlet (line 5) | class RouterOutlet, T extends Object> method createState (line 39) | RouterOutletState createState() class RouterOutletState (line 43) | class RouterOutletState, T extends O... method _listener (line 48) | void _listener() method didChangeDependencies (line 55) | void didChangeDependencies() method dispose (line 68) | void dispose() method build (line 74) | Widget build(BuildContext context) class GetRouterOutlet (line 80) | class GetRouterOutlet extends RouterOutlet { class InheritedNavigator (line 166) | class InheritedNavigator extends InheritedWidget { method of (line 174) | InheritedNavigator? of(BuildContext context) method updateShouldNotify (line 179) | bool updateShouldNotify(InheritedNavigator oldWidget) function pickFromRoute (line 192) | Iterable pickFromRoute(String route) function pickAfterRoute (line 197) | Iterable pickAfterRoute(String route) type NavigatorItemBuilderBuilder (line 207) | typedef NavigatorItemBuilderBuilder = Widget Function( class IndexedRouteBuilder (line 210) | class IndexedRouteBuilder extends StatelessWidget { method _getCurrentIndex (line 220) | int _getCurrentIndex(String currentLocation) method build (line 230) | Widget build(BuildContext context) function _listener (line 241) | void _listener() function didChangeDependencies (line 248) | void didChangeDependencies() function dispose (line 259) | void dispose() class RouterListenerInherited (line 265) | class RouterListenerInherited extends InheritedWidget { method of (line 271) | RouterListenerInherited? of(BuildContext context) method updateShouldNotify (line 277) | bool updateShouldNotify(covariant InheritedWidget oldWidget) class RouterListener (line 282) | class RouterListener extends StatefulWidget { method createState (line 290) | State createState() class RouteListenerState (line 293) | class RouteListenerState extends State method build (line 296) | Widget build(BuildContext context) class BackButtonCallback (line 301) | class BackButtonCallback extends StatefulWidget { method createState (line 306) | State createState() class RouterListenerState (line 309) | class RouterListenerState extends State method didChangeDependencies (line 314) | void didChangeDependencies() method build (line 322) | Widget build(BuildContext context) FILE: lib/get_navigation/src/routes/test_kit.dart class GetTestMode (line 1) | class GetTestMode { method setTestArguments (line 5) | void setTestArguments(Object? arguments) method setTestParameters (line 13) | void setTestParameters(Map parameters) FILE: lib/get_navigation/src/routes/transitions_type.dart type Transition (line 5) | enum Transition { type GetPageBuilder (line 24) | typedef GetPageBuilder = Widget Function(); type GetRouteAwarePageBuilder (line 25) | typedef GetRouteAwarePageBuilder = Widget Function([GetPageRoute? ... FILE: lib/get_navigation/src/routes/url_strategy/impl/io_url.dart function removeHash (line 1) | void removeHash() FILE: lib/get_navigation/src/routes/url_strategy/impl/stub_url.dart function removeHash (line 1) | void removeHash() FILE: lib/get_navigation/src/routes/url_strategy/impl/web_url.dart function removeHash (line 3) | void removeHash() FILE: lib/get_navigation/src/routes/url_strategy/url_strategy.dart function setUrlStrategy (line 5) | void setUrlStrategy() function removeLastHistory (line 9) | void removeLastHistory(String? url) FILE: lib/get_navigation/src/snackbar/snackbar.dart type OnTap (line 9) | typedef OnTap = void Function(GetSnackBar snack); type OnHover (line 10) | typedef OnHover = void Function( type SnackbarStatusCallback (line 13) | typedef SnackbarStatusCallback = void Function(SnackbarStatus? status); class GetSnackBar (line 15) | class GetSnackBar extends StatefulWidget { method createState (line 217) | State createState() method show (line 221) | SnackbarController show() class GetSnackBarState (line 226) | class GetSnackBarState extends State method build (line 270) | Widget build(BuildContext context) method dispose (line 328) | void dispose() method initState (line 339) | void initState() method _buildLeftBarIndicator (line 364) | Widget _buildLeftBarIndicator() method _configureLeftBarFuture (line 385) | void _configureLeftBarFuture() method _configureProgressIndicatorAnimation (line 397) | void _configureProgressIndicatorAnimation() method _configurePulseAnimation (line 407) | void _configurePulseAnimation() method _containerWithForm (line 429) | Widget _containerWithForm() method _containerWithoutForm (line 459) | Widget _containerWithoutForm() method _getIcon (line 557) | Widget? _getIcon() method _updateProgress (line 570) | void _updateProgress() type RowStyle (line 573) | enum RowStyle { type SnackbarStatus (line 588) | enum SnackbarStatus { open, closed, opening, closing } type SnackPosition (line 591) | enum SnackPosition { top, bottom } type SnackStyle (line 594) | enum SnackStyle { floating, grounded } type SnackHoverState (line 597) | enum SnackHoverState { entered, exited } FILE: lib/get_navigation/src/snackbar/snackbar_controller.dart class SnackbarController (line 10) | class SnackbarController { method close (line 52) | Future close({bool withAnimations = true}) method show (line 64) | Future show() method _cancelTimer (line 68) | void _cancelTimer() method _configureAlignment (line 75) | void _configureAlignment(SnackPosition snackPosition) method _configureOverlay (line 94) | void _configureOverlay() method _configureSnackBarDisplay (line 106) | void _configureSnackBarDisplay() method _configureTimer (line 120) | void _configureTimer() method _createAnimation (line 136) | Animation _createAnimation() method _createAnimationController (line 151) | AnimationController _createAnimationController() method _createBlurFilterAnimation (line 162) | Animation _createBlurFilterAnimation() method _createColorOverlayColor (line 175) | Animation _createColorOverlayColor() method _createOverlayEntries (line 190) | Iterable _createOverlayEntries(Widget child) method _getBodyWidget (line 239) | Widget _getBodyWidget() method _getDefaultDismissDirection (line 256) | DismissDirection _getDefaultDismissDirection() method _getDismissibleSnack (line 263) | Widget _getDismissibleSnack(Widget child) method _getSnackbarContainer (line 284) | Widget _getSnackbarContainer(Widget child) method _handleStatusChanged (line 291) | void _handleStatusChanged(AnimationStatus status) method _removeEntry (line 317) | void _removeEntry() method _removeOverlay (line 333) | void _removeOverlay() method _show (line 347) | Future _show() method cancelAllSnackbars (line 352) | Future cancelAllSnackbars() method closeCurrentSnackbar (line 356) | Future closeCurrentSnackbar() class SnackBarQueue (line 361) | class SnackBarQueue { method addJob (line 372) | Future addJob(SnackbarController job) method cancelAllJobs (line 379) | Future cancelAllJobs() method disposeControllers (line 385) | void disposeControllers() method closeCurrentJob (line 400) | Future closeCurrentJob() FILE: lib/get_rx/src/rx_stream/mini_stream.dart class Node (line 3) | class Node { class MiniSubscription (line 10) | class MiniSubscription { method cancel (line 18) | Future cancel() class MiniStream (line 23) | class MiniStream { method add (line 34) | void add(T event) method addError (line 39) | void addError(Object error, [StackTrace? stackTrace]) method listen (line 49) | MiniSubscription listen(void Function(T event) onData, method close (line 66) | void close() class FastList (line 76) | class FastList { method _notifyData (line 81) | void _notifyData(T data) method _notifyDone (line 89) | void _notifyDone() method _notifyError (line 97) | void _notifyError(Object error, [StackTrace? stackTrace]) method elementAt (line 111) | MiniSubscription? elementAt(int position) method addListener (line 124) | void addListener(MiniSubscription data) method contains (line 137) | bool contains(T element) method removeListener (line 146) | void removeListener(MiniSubscription element) method clear (line 157) | void clear() method _removeNode (line 162) | void _removeNode(Node> node) FILE: lib/get_rx/src/rx_typedefs/rx_typedefs.dart type Condition (line 1) | typedef Condition = bool Function(); type OnData (line 2) | typedef OnData = void Function(T data); type Callback (line 3) | typedef Callback = void Function(); FILE: lib/get_rx/src/rx_types/rx_core/rx_impl.dart function call (line 63) | T call([T? v]) function toString (line 77) | String toString() function toJson (line 80) | dynamic toJson() function listenAndPump (line 113) | StreamSubscription listenAndPump(void Function(T event) onData, function bindStream (line 131) | void bindStream(Stream stream) class _RxImpl (line 141) | abstract class _RxImpl extends GetListenable with RxObjectMixin { method addError (line 144) | void addError(Object error, [StackTrace? stackTrace]) method map (line 148) | Stream map(R Function(T? data) mapper) method update (line 170) | void update(T Function(T? val) fn) method trigger (line 200) | void trigger(T v) class RxBool (line 211) | class RxBool extends Rx { method toString (line 214) | String toString() class RxnBool (line 219) | class RxnBool extends Rx { method toString (line 222) | String toString() function toggle (line 240) | void toggle() function toggle (line 272) | void toggle() class Rx (line 284) | class Rx extends _RxImpl { method toJson (line 288) | dynamic toJson() class Rxn (line 297) | class Rxn extends Rx { method toJson (line 301) | dynamic toJson() function obs (line 341) | Rx obs() FILE: lib/get_rx/src/rx_types/rx_core/rx_interface.dart class RxInterface (line 7) | abstract class RxInterface implements ValueListenable { method close (line 9) | void close() method listen (line 12) | StreamSubscription listen(void Function(T event) onData, class ObxError (line 16) | class ObxError { method toString (line 19) | String toString() FILE: lib/get_rx/src/rx_types/rx_core/rx_num.dart function remainder (line 43) | num remainder(num other) function abs (line 76) | num abs() function round (line 102) | int round() function floor (line 107) | int floor() function ceil (line 112) | int ceil() function truncate (line 118) | int truncate() function roundToDouble (line 136) | double roundToDouble() function floorToDouble (line 149) | double floorToDouble() function ceilToDouble (line 162) | double ceilToDouble() function truncateToDouble (line 177) | double truncateToDouble() function clamp (line 187) | num clamp(num lowerLimit, num upperLimit) function toInt (line 191) | int toInt() function toDouble (line 198) | double toDouble() function toStringAsFixed (line 222) | String toStringAsFixed(int fractionDigits) function toStringAsExponential (line 243) | String toStringAsExponential([int? fractionDigits]) function toStringAsPrecision (line 262) | String toStringAsPrecision(int precision) function remainder (line 331) | num? remainder(num other) function abs (line 384) | num? abs() function round (line 410) | int? round() function floor (line 415) | int? floor() function ceil (line 420) | int? ceil() function truncate (line 426) | int? truncate() function roundToDouble (line 444) | double? roundToDouble() function floorToDouble (line 457) | double? floorToDouble() function ceilToDouble (line 470) | double? ceilToDouble() function truncateToDouble (line 485) | double? truncateToDouble() function clamp (line 495) | num? clamp(num lowerLimit, num upperLimit) function toInt (line 499) | int? toInt() function toDouble (line 506) | double? toDouble() function toStringAsFixed (line 530) | String? toStringAsFixed(int fractionDigits) function toStringAsExponential (line 551) | String? toStringAsExponential([int? fractionDigits]) function toStringAsPrecision (line 570) | String? toStringAsPrecision(int precision) class RxNum (line 574) | class RxNum extends Rx { class RxnNum (line 589) | class RxnNum extends Rx { function abs (line 641) | double abs() function round (line 656) | int round() function floor (line 661) | int floor() function ceil (line 666) | int ceil() function truncate (line 672) | int truncate() function roundToDouble (line 686) | double roundToDouble() function floorToDouble (line 695) | double floorToDouble() function ceilToDouble (line 704) | double ceilToDouble() function truncateToDouble (line 715) | double truncateToDouble() function abs (line 780) | double? abs() function round (line 797) | int? round() function floor (line 802) | int? floor() function ceil (line 807) | int? ceil() function truncate (line 813) | int? truncate() function roundToDouble (line 827) | double? roundToDouble() function floorToDouble (line 836) | double? floorToDouble() function ceilToDouble (line 845) | double? ceilToDouble() function truncateToDouble (line 856) | double? truncateToDouble() class RxDouble (line 859) | class RxDouble extends Rx { class RxnDouble (line 863) | class RxnDouble extends Rx { class RxInt (line 867) | class RxInt extends Rx { class RxnInt (line 883) | class RxnInt extends Rx { function modPow (line 967) | int modPow(int exponent, int modulus) function modInverse (line 975) | int modInverse(int modulus) function gcd (line 988) | int gcd(int other) function toUnsigned (line 1038) | int toUnsigned(int width) function toSigned (line 1068) | int toSigned(int width) function abs (line 1079) | int abs() function round (line 1088) | int round() function floor (line 1091) | int floor() function ceil (line 1094) | int ceil() function truncate (line 1097) | int truncate() function roundToDouble (line 1100) | double roundToDouble() function floorToDouble (line 1103) | double floorToDouble() function ceilToDouble (line 1106) | double ceilToDouble() function truncateToDouble (line 1109) | double truncateToDouble() function modPow (line 1206) | int? modPow(int exponent, int modulus) function modInverse (line 1214) | int? modInverse(int modulus) function gcd (line 1227) | int? gcd(int other) function toUnsigned (line 1277) | int? toUnsigned(int width) function toSigned (line 1307) | int? toSigned(int width) function abs (line 1323) | int? abs() function round (line 1332) | int? round() function floor (line 1335) | int? floor() function ceil (line 1338) | int? ceil() function truncate (line 1341) | int? truncate() function roundToDouble (line 1344) | double? roundToDouble() function floorToDouble (line 1347) | double? floorToDouble() function ceilToDouble (line 1350) | double? ceilToDouble() function truncateToDouble (line 1353) | double? truncateToDouble() FILE: lib/get_rx/src/rx_types/rx_core/rx_string.dart function compareTo (line 6) | int compareTo(String other) function endsWith (line 13) | bool endsWith(String other) function startsWith (line 18) | bool startsWith(Pattern pattern, [int index = 0]) function indexOf (line 23) | int indexOf(Pattern pattern, [int start = 0]) function lastIndexOf (line 29) | int lastIndexOf(Pattern pattern, [int? start]) function substring (line 41) | String substring(int startIndex, [int? endIndex]) function trim (line 46) | String trim() function trimLeft (line 53) | String trimLeft() function trimRight (line 60) | String trimRight() function padLeft (line 68) | String padLeft(int width, [String padding = ' ']) function padRight (line 76) | String padRight(int width, [String padding = ' ']) function contains (line 81) | bool contains(Pattern other, [int startIndex = 0]) function replaceAll (line 86) | String replaceAll(Pattern from, String replace) function split (line 92) | List split(Pattern pattern) function toLowerCase (line 108) | String toLowerCase() function toUpperCase (line 114) | String toUpperCase() function allMatches (line 118) | Iterable allMatches(String string, [int start = 0]) function matchAsPrefix (line 122) | Match? matchAsPrefix(String string, [int start = 0]) function compareTo (line 130) | int? compareTo(String other) function endsWith (line 137) | bool? endsWith(String other) function startsWith (line 142) | bool? startsWith(Pattern pattern, [int index = 0]) function indexOf (line 147) | int? indexOf(Pattern pattern, [int start = 0]) function lastIndexOf (line 153) | int? lastIndexOf(Pattern pattern, [int? start]) function substring (line 165) | String? substring(int startIndex, [int? endIndex]) function trim (line 170) | String? trim() function trimLeft (line 177) | String? trimLeft() function trimRight (line 184) | String? trimRight() function padLeft (line 192) | String? padLeft(int width, [String padding = ' ']) function padRight (line 200) | String? padRight(int width, [String padding = ' ']) function contains (line 205) | bool? contains(Pattern other, [int startIndex = 0]) function replaceAll (line 210) | String? replaceAll(Pattern from, String replace) function split (line 216) | List? split(Pattern pattern) function toLowerCase (line 232) | String? toLowerCase() function toUpperCase (line 238) | String? toUpperCase() function allMatches (line 242) | Iterable? allMatches(String string, [int start = 0]) function matchAsPrefix (line 246) | Match? matchAsPrefix(String string, [int start = 0]) class RxString (line 252) | class RxString extends Rx implements Comparable, Pattern { method allMatches (line 256) | Iterable allMatches(String string, [int start = 0]) method matchAsPrefix (line 261) | Match? matchAsPrefix(String string, [int start = 0]) method compareTo (line 266) | int compareTo(String other) class RxnString (line 272) | class RxnString extends Rx implements Comparable, Patte... method allMatches (line 276) | Iterable allMatches(String string, [int start = 0]) method matchAsPrefix (line 281) | Match? matchAsPrefix(String string, [int start = 0]) method compareTo (line 286) | int compareTo(String other) FILE: lib/get_rx/src/rx_types/rx_iterables/rx_list.dart class RxList (line 4) | class RxList extends GetListenable> method add (line 61) | void add(E element) method addAll (line 67) | void addAll(Iterable iterable) method remove (line 73) | bool remove(Object? element) method removeWhere (line 80) | void removeWhere(bool Function(E element) test) method retainWhere (line 86) | void retainWhere(bool Function(E element) test) method insertAll (line 108) | void insertAll(int index, Iterable iterable) method where (line 123) | Iterable where(bool Function(E) test) method whereType (line 128) | Iterable whereType() method sort (line 133) | void sort([int Function(E a, E b)? compare]) function addNonNull (line 143) | void addNonNull(E item) function addIf (line 148) | void addIf(dynamic condition, E item) function addAllIf (line 154) | void addAllIf(dynamic condition, Iterable items) function assign (line 160) | void assign(E item) function assignAll (line 172) | void assignAll(Iterable items) FILE: lib/get_rx/src/rx_types/rx_iterables/rx_map.dart class RxMap (line 3) | class RxMap extends GetListenable> method clear (line 38) | void clear() method remove (line 47) | V? remove(Object? key) function addIf (line 67) | void addIf(dynamic condition, K key, V value) function addAllIf (line 74) | void addAllIf(dynamic condition, Map values) function assign (line 79) | void assign(K key, V val) function assignAll (line 91) | void assignAll(Map val) FILE: lib/get_rx/src/rx_types/rx_iterables/rx_set.dart class RxSet (line 3) | class RxSet extends GetListenable> method update (line 15) | void update(void Function(Iterable? value) fn) method add (line 37) | bool add(E value) method contains (line 46) | bool contains(Object? element) method lookup (line 57) | E? lookup(Object? element) method remove (line 62) | bool remove(Object? value) method toSet (line 71) | Set toSet() method addAll (line 76) | void addAll(Iterable elements) method clear (line 82) | void clear() method removeAll (line 88) | void removeAll(Iterable elements) method retainAll (line 94) | void retainAll(Iterable elements) method retainWhere (line 100) | void retainWhere(bool Function(E) test) function addIf (line 122) | void addIf(dynamic condition, E item) function addAllIf (line 128) | void addAllIf(dynamic condition, Iterable items) function assign (line 134) | void assign(E item) function assignAll (line 144) | void assignAll(Iterable items) FILE: lib/get_rx/src/rx_workers/rx_workers.dart function _conditional (line 8) | bool _conditional(dynamic condition) type WorkerCallback (line 15) | typedef WorkerCallback = Function(T callback); class Workers (line 17) | class Workers { method dispose (line 21) | void dispose() function ever (line 60) | Worker ever( function everAll (line 83) | Worker everAll( function cancel (line 104) | Future cancel() function once (line 134) | Worker once( function interval (line 177) | Worker interval( function debounce (line 221) | Worker debounce( class Worker (line 244) | class Worker { method _log (line 257) | void _log(String msg) method dispose (line 262) | void dispose() method call (line 272) | void call() FILE: lib/get_rx/src/rx_workers/utils/debouncer.dart class Debouncer (line 11) | class Debouncer { method call (line 17) | void call(void Function() action) method cancel (line 26) | void cancel() FILE: lib/get_state_manager/src/rx_flutter/rx_getx_widget.dart type GetXControllerBuilder (line 9) | typedef GetXControllerBuilder = Widget Func... class GetX (line 12) | class GetX extends StatefulWidget { method createElement (line 41) | StatefulElement createElement() method debugFillProperties (line 44) | void debugFillProperties(DiagnosticPropertiesBuilder properties) method createState (line 56) | GetXState createState() class GetXState (line 59) | class GetXState extends State> { method initState (line 64) | void initState() method didChangeDependencies (line 91) | void didChangeDependencies() method didUpdateWidget (line 99) | void didUpdateWidget(GetX oldWidget) method dispose (line 105) | void dispose() method _update (line 124) | void _update() method build (line 133) | Widget build(BuildContext context) method debugFillProperties (line 138) | void debugFillProperties(DiagnosticPropertiesBuilder properties) FILE: lib/get_state_manager/src/rx_flutter/rx_notifier.dart function _isEmpty (line 13) | bool _isEmpty() function _fillInitialStatus (line 32) | void _fillInitialStatus() function change (line 68) | void change(GetStatus status) function setSuccess (line 74) | void setSuccess(T data) function setError (line 78) | void setError(Object error) function setLoading (line 82) | void setLoading() function setEmpty (line 86) | void setEmpty() function futurize (line 90) | void futurize(Future Function() body, type FuturizeCallback (line 111) | typedef FuturizeCallback = Future Function(VoidCallback fn); type VoidCallback (line 113) | typedef VoidCallback = void Function(); class GetListenable (line 115) | class GetListenable extends ListNotifierSingle implements RxInterface... method _streamListener (line 131) | void _streamListener() method close (line 137) | void close() method _notify (line 155) | void _notify() method call (line 165) | T? call([T? v]) method listen (line 173) | StreamSubscription listen( method toString (line 187) | String toString() class Value (line 190) | class Value extends ListNotifier method call (line 211) | T? call([T? v]) method update (line 218) | void update(T Function(T? value) fn) method toString (line 224) | String toString() method toJson (line 226) | dynamic toJson() class GetNotifier (line 231) | abstract class GetNotifier extends Value with GetLifeCycleMixin { function obx (line 236) | Widget obx( type NotifierBuilder (line 264) | typedef NotifierBuilder = Widget Function(T state); class GetStatus (line 266) | abstract class GetStatus with Equality { class CustomStatus (line 280) | class CustomStatus extends GetStatus { class LoadingStatus (line 285) | class LoadingStatus extends GetStatus { class SuccessStatus (line 290) | class SuccessStatus extends GetStatus { class ErrorStatus (line 299) | class ErrorStatus extends GetStatus { class EmptyStatus (line 308) | class EmptyStatus extends GetStatus { FILE: lib/get_state_manager/src/rx_flutter/rx_obx_widget.dart type WidgetCallback (line 6) | typedef WidgetCallback = Widget Function(); class ObxWidget (line 13) | abstract class ObxWidget extends ObxStatelessWidget { class Obx (line 24) | class Obx extends ObxWidget { method build (line 30) | Widget build(BuildContext context) class ObxValue (line 46) | class ObxValue extends ObxWidget { method build (line 53) | Widget build(BuildContext context) FILE: lib/get_state_manager/src/rx_flutter/rx_ticket_provider_mixin.dart function createTicker (line 35) | Ticker createTicker(TickerCallback onTick) function didChangeDependencies (line 59) | void didChangeDependencies(BuildContext context) function onClose (line 64) | void onClose() function createTicker (line 115) | Ticker createTicker(TickerCallback onTick) function _removeTicker (line 123) | void _removeTicker(_WidgetTicker ticker) function didChangeDependencies (line 129) | void didChangeDependencies(BuildContext context) function onClose (line 139) | void onClose() class _WidgetTicker (line 167) | class _WidgetTicker extends Ticker { method dispose (line 173) | void dispose() function createTicker (line 202) | Ticker createTicker(TickerCallback onTick) FILE: lib/get_state_manager/src/simple/get_controllers.dart class GetxController (line 26) | abstract class GetxController extends ListNotifier with GetLifeCycleMixin { method update (line 37) | void update([List? ids, bool condition = true]) function onInit (line 75) | void onInit() function _listener (line 86) | void _listener() function _checkIfCanLoadMore (line 92) | Future _checkIfCanLoadMore() function onEndScroll (line 107) | Future onEndScroll() function onTopScroll (line 110) | Future onTopScroll() function onClose (line 113) | void onClose() class RxController (line 132) | abstract class RxController with GetLifeCycleMixin {} class StateController (line 157) | abstract class StateController extends GetxController with StateMixin... class SuperController (line 188) | abstract class SuperController extends FullLifeCycleController class FullLifeCycleController (line 222) | abstract class FullLifeCycleController extends GetxController function onInit (line 249) | void onInit() function onClose (line 256) | void onClose() function didChangeAppLifecycleState (line 263) | void didChangeAppLifecycleState(AppLifecycleState state) function didHaveMemoryPressure (line 284) | void didHaveMemoryPressure() function didChangeAccessibilityFeatures (line 290) | void didChangeAccessibilityFeatures() function onResumed (line 297) | void onResumed() function onPaused (line 301) | void onPaused() function onInactive (line 306) | void onInactive() function onDetached (line 310) | void onDetached() function onHidden (line 313) | void onHidden() function onMemoryPressure (line 318) | void onMemoryPressure() function onAccessibilityChanged (line 322) | void onAccessibilityChanged() FILE: lib/get_state_manager/src/simple/get_responsive.dart function build (line 10) | Widget build(BuildContext context) function builder (line 32) | Widget? builder() function desktop (line 34) | Widget? desktop() function phone (line 36) | Widget? phone() function tablet (line 38) | Widget? tablet() function watch (line 40) | Widget? watch() class GetResponsiveView (line 55) | class GetResponsiveView extends GetView with GetResponsiveMixin { class GetResponsiveWidget (line 69) | class GetResponsiveWidget extends GetWidget class ResponsiveScreenSettings (line 84) | class ResponsiveScreenSettings { class ResponsiveScreen (line 107) | class ResponsiveScreen { method responsiveValue (line 152) | T? responsiveValue({ type ScreenType (line 165) | enum ScreenType { FILE: lib/get_state_manager/src/simple/get_state.dart type InitBuilder (line 11) | typedef InitBuilder = T Function(); type GetControllerBuilder (line 13) | typedef GetControllerBuilder = Widget Funct... function listen (line 17) | T listen() function get (line 23) | T get() class GetBuilder (line 34) | class GetBuilder extends StatelessWidget { method build (line 66) | Widget build(BuildContext context) class Bind (line 89) | abstract class Bind extends StatelessWidget { method put (line 122) | Bind put( method lazyPut (line 137) | Bind lazyPut( method create (line 156) | Bind create(InstanceCreateBuilderCallback builder, method spawn (line 165) | Bind spawn(InstanceBuilderCallback builder, method find (line 175) | S find({String? tag}) method delete (line 177) | Future delete({String? tag, bool force = false}) method deleteAll (line 180) | Future deleteAll({bool force = false}) method reloadAll (line 183) | void reloadAll({bool force = false}) method reload (line 185) | void reload({String? tag, String? key, bool force = false}) method isRegistered (line 188) | bool isRegistered({String? tag}) method isPrepared (line 190) | bool isPrepared({String? tag}) method replace (line 192) | void replace

(P child, {String? tag}) method lazyReplace (line 199) | void lazyReplace

(InstanceBuilderCallback

builder, method of (line 239) | T of( method _copyWithChild (line 267) | Bind _copyWithChild(Widget child) class _FactoryBind (line 270) | class _FactoryBind extends Bind { method _copyWithChild (line 318) | Bind _copyWithChild(Widget child) method build (line 337) | Widget build(BuildContext context) class Binds (line 355) | class Binds extends StatelessWidget { method build (line 366) | Widget build(BuildContext context) class Binder (line 370) | class Binder extends InheritedWidget { method updateShouldNotify (line 409) | bool updateShouldNotify(Binder oldWidget) method createElement (line 417) | InheritedElement createElement() class BindElement (line 422) | class BindElement extends InheritedElement { method initState (line 452) | void initState() method _subscribeToController (line 494) | void _subscribeToController() method _filterUpdate (line 523) | void _filterUpdate() method dispose (line 531) | void dispose() method update (line 561) | void update(Binder newWidget) method didChangeDependencies (line 572) | void didChangeDependencies() method build (line 578) | Widget build() method getUpdate (line 589) | void getUpdate() method notifyClients (line 595) | void notifyClients(Binder oldWidget) method unmount (line 601) | void unmount() class BindError (line 607) | class BindError extends Error { method toString (line 616) | String toString() class Binding (line 632) | abstract class Binding extends BindingsInterface> {} FILE: lib/get_state_manager/src/simple/get_view.dart class GetView (line 34) | abstract class GetView extends StatelessWidget { method build (line 42) | Widget build(BuildContext context) class GetWidget (line 51) | abstract class GetWidget extends GetWidgetC... method build (line 64) | Widget build(BuildContext context) method createWidgetCache (line 67) | WidgetCache createWidgetCache() class _GetCache (line 70) | class _GetCache extends WidgetCache(NotifyData data, T Function() builder) class NotifyData (line 198) | class NotifyData { class ObxError (line 208) | class ObxError { method toString (line 211) | String toString() FILE: lib/get_state_manager/src/simple/mixin_builder.dart class MixinBuilder (line 7) | class MixinBuilder extends StatelessWidget { method build (line 34) | Widget build(BuildContext context) FILE: lib/get_state_manager/src/simple/simple_builder.dart type ValueBuilderUpdateCallback (line 7) | typedef ValueBuilderUpdateCallback = void Function(T snapshot); type ValueBuilderBuilder (line 8) | typedef ValueBuilderBuilder = Widget Function( class ValueBuilder (line 26) | class ValueBuilder extends StatefulWidget { method createState (line 41) | ValueBuilderState createState() class ValueBuilderState (line 44) | class ValueBuilderState extends State> { method initState (line 47) | void initState() method build (line 53) | Widget build(BuildContext context) method updater (line 55) | void updater(T newValue) method dispose (line 65) | void dispose() class Observer (line 79) | class Observer extends ObxStatelessWidget { method build (line 85) | Widget build(BuildContext context) class ObxStatelessWidget (line 89) | abstract class ObxStatelessWidget extends StatelessWidget { method createElement (line 93) | StatelessElement createElement() function getUpdate (line 100) | void getUpdate() function build (line 110) | Widget build() function unmount (line 116) | void unmount() FILE: lib/get_utils/src/equality/equality.dart class IEquality (line 25) | abstract class IEquality { method equals (line 31) | bool equals(E e1, E e2) method hash (line 37) | int hash(E e) method isValidKey (line 43) | bool isValidKey(Object? o) class DefaultEquality (line 46) | class DefaultEquality implements IEquality { method equals (line 49) | bool equals(Object? e1, Object? e2) method hash (line 51) | int hash(Object? e) method isValidKey (line 53) | bool isValidKey(Object? o) class IdentityEquality (line 57) | class IdentityEquality implements IEquality { method equals (line 60) | bool equals(E e1, E e2) method hash (line 62) | int hash(E e) method isValidKey (line 64) | bool isValidKey(Object? o) class DeepCollectionEquality (line 67) | class DeepCollectionEquality implements IEquality { method equals (line 73) | bool equals(e1, e2) method hash (line 92) | int hash(Object? o) method isValidKey (line 105) | bool isValidKey(Object? o) class ListEquality (line 113) | class ListEquality implements IEquality> { method equals (line 120) | bool equals(List? list1, List? list2) method hash (line 132) | int hash(List? list) method isValidKey (line 151) | bool isValidKey(Object? o) class MapEquality (line 158) | class MapEquality implements IEquality> { method equals (line 168) | bool equals(Map? map1, Map? map2) method hash (line 189) | int hash(Map? map) method isValidKey (line 204) | bool isValidKey(Object? o) class _MapEntry (line 207) | class _MapEntry { class IterableEquality (line 229) | class IterableEquality implements IEquality> { method equals (line 236) | bool equals(Iterable? elements1, Iterable? elements2) method hash (line 250) | int hash(Iterable? elements) method isValidKey (line 267) | bool isValidKey(Object? o) class SetEquality (line 275) | class SetEquality extends _UnorderedEquality> { method isValidKey (line 279) | bool isValidKey(Object? o) class _UnorderedEquality (line 282) | abstract class _UnorderedEquality> method equals (line 289) | bool equals(T? elements1, T? elements2) method hash (line 312) | int hash(T? elements) class UnorderedIterableEquality (line 331) | class UnorderedIterableEquality extends _UnorderedEquality({ FILE: lib/get_utils/src/extensions/double_extensions.dart function toPrecision (line 4) | double toPrecision(int fractionDigits) FILE: lib/get_utils/src/extensions/duration_extensions.dart function delay (line 18) | Future delay([FutureOr Function()? callback]) FILE: lib/get_utils/src/extensions/dynamic_extensions.dart function printError (line 6) | void printError( function printInfo (line 11) | void printInfo( FILE: lib/get_utils/src/extensions/event_loop_extensions.dart function toEnd (line 6) | Future toEnd(FutureOr Function() computation) function asap (line 12) | FutureOr asap(T Function() computation, FILE: lib/get_utils/src/extensions/internacionalization.dart class _IntlHost (line 5) | class _IntlHost { function firstWhereOrNull (line 15) | T? firstWhereOrNull(bool Function(T element) test) function addTranslations (line 36) | void addTranslations(Map> tr) function clearTranslations (line 40) | void clearTranslations() function appendTranslations (line 44) | void appendTranslations(Map> tr) function trArgs (line 117) | String trArgs([List args = const []]) function trPlural (line 127) | String trPlural([String? pluralKey, int? i, List args = const []]) function trParams (line 131) | String trParams([Map params = const {}]) function trPluralParams (line 141) | String trPluralParams( FILE: lib/get_utils/src/extensions/iterable_extensions.dart function mapMany (line 2) | Iterable mapMany( FILE: lib/get_utils/src/extensions/num_extensions.dart function isLowerThan (line 6) | bool isLowerThan(num b) function isGreaterThan (line 8) | bool isGreaterThan(num b) function isEqual (line 10) | bool isEqual(num b) function delay (line 27) | Future delay([FutureOr Function()? callback]) FILE: lib/get_utils/src/extensions/string_extensions.dart function numericOnly (line 10) | String numericOnly({bool firstWordOnly = false}) function isCaseInsensitiveContains (line 100) | bool isCaseInsensitiveContains(String b) function isCaseInsensitiveContainsAny (line 104) | bool isCaseInsensitiveContainsAny(String b) function createPath (line 123) | String createPath([Iterable? segments]) function capitalizeAllWordsFirstLetter (line 129) | String capitalizeAllWordsFirstLetter() FILE: lib/get_utils/src/extensions/widget_extensions.dart function paddingAll (line 5) | Widget paddingAll(double padding) function paddingSymmetric (line 8) | Widget paddingSymmetric({double horizontal = 0.0, double vertical = 0.0}) function paddingOnly (line 14) | Widget paddingOnly({ function marginAll (line 30) | Widget marginAll(double margin) function marginSymmetric (line 33) | Widget marginSymmetric({double horizontal = 0.0, double vertical = 0.0}) function marginOnly (line 39) | Widget marginOnly({ FILE: lib/get_utils/src/get_utils/get_utils.dart function _isEmpty (line 8) | bool? _isEmpty(dynamic value) function _hasLength (line 23) | bool _hasLength(dynamic value) function _obtainDynamicLength (line 37) | int? _obtainDynamicLength(dynamic value) class GetUtils (line 59) | class GetUtils { method isNull (line 63) | bool isNull(dynamic value) method nil (line 71) | dynamic nil(dynamic s) method isNullOrBlank (line 74) | bool? isNullOrBlank(dynamic value) method isBlank (line 85) | bool? isBlank(dynamic value) method isNum (line 90) | bool isNum(String value) method isNumericOnly (line 100) | bool isNumericOnly(String s) method isAlphabetOnly (line 103) | bool isAlphabetOnly(String s) method hasCapitalLetter (line 106) | bool hasCapitalLetter(String s) method isBool (line 109) | bool isBool(String value) method isVideo (line 118) | bool isVideo(String filePath) method isImage (line 131) | bool isImage(String filePath) method isAudio (line 142) | bool isAudio(String filePath) method isPPT (line 153) | bool isPPT(String filePath) method isWord (line 160) | bool isWord(String filePath) method isExcel (line 167) | bool isExcel(String filePath) method isAPK (line 174) | bool isAPK(String filePath) method isPDF (line 179) | bool isPDF(String filePath) method isTxt (line 184) | bool isTxt(String filePath) method isChm (line 189) | bool isChm(String filePath) method isVector (line 194) | bool isVector(String filePath) method isHTML (line 199) | bool isHTML(String filePath) method isUsername (line 204) | bool isUsername(String s) method isURL (line 208) | bool isURL(String s) method isEmail (line 212) | bool isEmail(String s) method isPhoneNumber (line 216) | bool isPhoneNumber(String s) method isDateTime (line 222) | bool isDateTime(String s) method isMD5 (line 226) | bool isMD5(String s) method isSHA1 (line 229) | bool isSHA1(String s) method isSHA256 (line 233) | bool isSHA256(String s) method isSSN (line 237) | bool isSSN(String s) method isBinary (line 241) | bool isBinary(String s) method isIPv4 (line 244) | bool isIPv4(String s) method isIPv6 (line 248) | bool isIPv6(String s) method isHexadecimal (line 253) | bool isHexadecimal(String s) method isPalindrome (line 257) | bool isPalindrome(String string) method isOneAKind (line 274) | bool isOneAKind(dynamic value) method isPassport (line 305) | bool isPassport(String s) method isCurrency (line 309) | bool isCurrency(String s) method isLengthGreaterThan (line 313) | bool isLengthGreaterThan(dynamic value, int maxLength) method isLengthGreaterOrEqual (line 324) | bool isLengthGreaterOrEqual(dynamic value, int maxLength) method isLengthLessThan (line 335) | bool isLengthLessThan(dynamic value, int maxLength) method isLengthLessOrEqual (line 345) | bool isLengthLessOrEqual(dynamic value, int maxLength) method isLengthEqualTo (line 356) | bool isLengthEqualTo(dynamic value, int otherLength) method isLengthBetween (line 367) | bool isLengthBetween(dynamic value, int minLength, int maxLength) method isCaseInsensitiveContains (line 378) | bool isCaseInsensitiveContains(String a, String b) method isCaseInsensitiveContainsAny (line 384) | bool isCaseInsensitiveContainsAny(String a, String b) method isLowerThan (line 392) | bool isLowerThan(num a, num b) method isGreaterThan (line 395) | bool isGreaterThan(num a, num b) method isEqual (line 398) | bool isEqual(num a, num b) method isCnpj (line 401) | bool isCnpj(String cnpj) method isCpf (line 450) | bool isCpf(String cpf) method capitalize (line 502) | String capitalize(String value) method capitalizeFirst (line 509) | String capitalizeFirst(String s) method removeAllWhitespace (line 516) | String removeAllWhitespace(String value) method camelCase (line 522) | String? camelCase(String value) method _groupIntoWords (line 541) | List _groupIntoWords(String text) method snakeCase (line 565) | String? snakeCase(String? text, {String separator = '_'}) method paramCase (line 575) | String? paramCase(String? text) method numericOnly (line 581) | String numericOnly(String s, {bool firstWordOnly = false}) method capitalizeAllWordsFirstLetter (line 599) | String capitalizeAllWordsFirstLetter(String s) method hasMatch (line 634) | bool hasMatch(String? value, String pattern) method createPath (line 638) | String createPath(String path, [Iterable? segments]) method printFunction (line 646) | void printFunction( type PrintFunctionCallback (line 656) | typedef PrintFunctionCallback = void Function( FILE: lib/get_utils/src/platform/platform.dart class GetPlatform (line 6) | class GetPlatform { FILE: lib/get_utils/src/platform/platform_io.dart class GeneralPlatform (line 4) | class GeneralPlatform { FILE: lib/get_utils/src/platform/platform_stub.dart class GeneralPlatform (line 1) | class GeneralPlatform { FILE: lib/get_utils/src/platform/platform_web.dart class GeneralPlatform (line 8) | class GeneralPlatform { FILE: lib/get_utils/src/queue/get_queue.dart class GetMicrotask (line 3) | class GetMicrotask { method exec (line 10) | void exec(Function callback) class GetQueue (line 22) | class GetQueue { method add (line 26) | Future add(Function job) method cancelAllJobs (line 33) | void cancelAllJobs() method _check (line 37) | void _check() class _Item (line 52) | class _Item { FILE: lib/get_utils/src/widgets/optimized_listview.dart class OptimizedListView (line 3) | class OptimizedListView extends StatelessWidget { method build (line 27) | Widget build(BuildContext context) FILE: test/animations/extensions_test.dart function main (line 5) | void main() function buildWidget (line 7) | Widget buildWidget() function _testDefaultValues (line 199) | void _testDefaultValues({ FILE: test/animations/get_animated_builder_test.dart class _Wrapper (line 5) | class _Wrapper extends StatelessWidget { method build (line 10) | Widget build(BuildContext context) function main (line 17) | void main() FILE: test/benchmarks/benckmark_test.dart function printValue (line 9) | void printValue(String value) function valueNotifier (line 14) | Future valueNotifier() function getValue (line 36) | Future getValue() function stream (line 58) | Future stream() function miniStream (line 106) | Future miniStream() function main (line 129) | void main() function calculePercentage (line 194) | int calculePercentage(int dart, int getx) FILE: test/instance/get_instance_test.dart class Mock (line 8) | class Mock { method test (line 9) | Future test() class MyController (line 15) | abstract class MyController with GetLifeCycleMixin {} class DisposableController (line 17) | class DisposableController extends MyController {} class Service (line 20) | abstract class Service { method post (line 21) | String post() class Api (line 24) | class Api implements Service { method post (line 26) | String post() function main (line 31) | void main() class PermanentService (line 271) | class PermanentService extends GetxService {} class Controller (line 273) | class Controller extends DisposableController { method onInit (line 278) | void onInit() method onClose (line 284) | void onClose() method increment (line 289) | void increment() FILE: test/instance/util/matcher.dart class FunctionMatcher (line 30) | class FunctionMatcher extends CustomMatcher { method featureValueOf (line 37) | Object featureValueOf(covariant T actual) class HavingMatcher (line 40) | class HavingMatcher implements TypeMatcher { method having (line 54) | TypeMatcher having( method matches (line 59) | bool matches(dynamic item, Map matchState) method describeMismatch (line 70) | Description describeMismatch( method describe (line 83) | Description describe(Description description) class TypeMatcher (line 90) | class TypeMatcher extends Matcher { method having (line 93) | TypeMatcher having( method describe (line 98) | Description describe(Description description) method matches (line 104) | bool matches(Object? item, Map matchState) method describeMismatch (line 107) | Description describeMismatch( function _stripDynamic (line 118) | String _stripDynamic(Type type) FILE: test/internationalization/internationalization_test.dart function main (line 7) | void main() FILE: test/navigation/bottomsheet_test.dart function main (line 7) | void main() FILE: test/navigation/dialog_test.dart function main (line 7) | void main() function setUpCloseTest (line 39) | Future setUpCloseTest(WidgetTester tester) function tearDownCloseTest (line 54) | Future tearDownCloseTest(WidgetTester tester) class YourDialogWidget (line 127) | class YourDialogWidget extends StatelessWidget { method build (line 131) | Widget build(BuildContext context) FILE: test/navigation/dispose_dependencies_test.dart function main (line 7) | void main() class Controller (line 51) | class Controller extends GetxController {} class Controller2 (line 53) | class Controller2 extends GetxController {} class First (line 55) | class First extends StatelessWidget { method build (line 59) | Widget build(BuildContext context) class Second (line 67) | class Second extends StatelessWidget { method build (line 71) | Widget build(BuildContext context) FILE: test/navigation/get_main_test.dart function main (line 7) | void main() class Home (line 734) | class Home extends StatelessWidget { method build (line 738) | Widget build(BuildContext context) class FirstScreen (line 744) | class FirstScreen extends StatelessWidget { method build (line 748) | Widget build(BuildContext context) class SecondScreen (line 754) | class SecondScreen extends StatelessWidget { method build (line 758) | Widget build(BuildContext context) class ThirdScreen (line 763) | class ThirdScreen extends StatelessWidget { method build (line 767) | Widget build(BuildContext context) class FourthScreen (line 772) | class FourthScreen extends StatelessWidget { method build (line 776) | Widget build(BuildContext context) FILE: test/navigation/middleware_test.dart class RedirectMiddleware (line 6) | class RedirectMiddleware extends GetMiddleware { method redirectDelegate (line 8) | Future redirectDelegate(RouteDecoder route) class Redirect2Middleware (line 13) | class Redirect2Middleware extends GetMiddleware { method redirectDelegate (line 15) | Future redirectDelegate(RouteDecoder route) class RedirectMiddlewareNull (line 20) | class RedirectMiddlewareNull extends GetMiddleware { method redirectDelegate (line 22) | Future redirectDelegate(RouteDecoder route) class RedirectBypassMiddleware (line 27) | class RedirectBypassMiddleware extends GetMiddleware { method redirectDelegate (line 29) | Future redirectDelegate(RouteDecoder route) function main (line 34) | void main() FILE: test/navigation/parse_route_test.dart function main (line 5) | void main() FILE: test/navigation/root_widget_test.dart function main (line 4) | void main() FILE: test/navigation/routes_test.dart function main (line 1) | void main() FILE: test/navigation/snackbar_test.dart function main (line 5) | void main() FILE: test/navigation/utils/wrapper.dart class Wrapper (line 4) | class Wrapper extends StatelessWidget { method build (line 19) | Widget build(BuildContext context) class WrapperNamed (line 35) | class WrapperNamed extends StatelessWidget { method build (line 50) | Widget build(BuildContext context) class WrapperTranslations (line 59) | class WrapperTranslations extends Translations { FILE: test/rx/rx_workers_test.dart function main (line 6) | void main() FILE: test/state_manager/get_mixin_state_test.dart function main (line 6) | void main() class Controller (line 92) | class Controller extends GetxController { method increment (line 102) | void increment() method increment2 (line 106) | void increment2() FILE: test/state_manager/get_obx_test.dart function main (line 5) | void main() class Controller (line 54) | class Controller extends GetxController { method increment (line 64) | void increment() FILE: test/state_manager/get_rxstate_test.dart function main (line 5) | void main() class Controller2 (line 76) | class Controller2 extends GetxController { class ControllerNonGlobal (line 80) | class ControllerNonGlobal extends GetxController { class Controller (line 84) | class Controller extends GetxController { method increment (line 94) | void increment() FILE: test/state_manager/get_state_test.dart function main (line 5) | void main() class Controller (line 85) | class Controller extends GetxController { method increment (line 90) | void increment() method incrementWithId (line 95) | void incrementWithId() class Controller2 (line 101) | class Controller2 extends GetxController { class ControllerNonGlobal (line 105) | class ControllerNonGlobal extends GetxController { FILE: test/utils/extensions/context_extensions_test.dart function main (line 7) | void main() FILE: test/utils/extensions/double_extensions_test.dart function main (line 4) | void main() FILE: test/utils/extensions/dynamic_extensions_test.dart function main (line 4) | void main() function logFunction (line 8) | void logFunction(String prefix, dynamic value, String info, function logFunction (line 19) | void logFunction(String prefix, dynamic value, String info, function logFunction (line 30) | void logFunction(String prefix, dynamic value, String info, FILE: test/utils/extensions/int_extensions_test.dart function main (line 4) | void main() FILE: test/utils/extensions/num_extensions_test.dart function main (line 4) | void main() FILE: test/utils/extensions/string_extensions_test.dart function main (line 4) | void main() FILE: test/utils/extensions/widget_extensions_test.dart class Foo (line 5) | class Foo extends StatelessWidget { method build (line 9) | Widget build(BuildContext context) function main (line 14) | void main() FILE: test/utils/get_utils_test.dart class TestClass (line 4) | class TestClass { class EmptyClass (line 8) | class EmptyClass {} function main (line 10) | void main() function newId (line 11) | dynamic newId(dynamic e) FILE: test/utils/platform_test.dart function main (line 9) | void main() FILE: test/utils/platform_web_test.dart function main (line 9) | void main()