// Mocks generated by Mockito 5.4.6 from annotations // in coves_flutter/test/services/coves_auth_service_singleton_test.dart. // Do not manually edit this file. // ignore_for_file: no_leading_underscores_for_library_prefixes import 'dart:async' as _i9; import 'package:dio/src/adapter.dart' as _i4; import 'package:dio/src/cancel_token.dart' as _i10; import 'package:dio/src/dio.dart' as _i7; import 'package:dio/src/dio_mixin.dart' as _i3; import 'package:dio/src/options.dart' as _i2; import 'package:dio/src/response.dart' as _i6; import 'package:dio/src/transformer.dart' as _i5; import 'package:flutter/foundation.dart' as _i11; import 'package:flutter_secure_storage/flutter_secure_storage.dart' as _i8; import 'package:mockito/mockito.dart' as _i1; // ignore_for_file: type=lint // ignore_for_file: avoid_redundant_argument_values // ignore_for_file: avoid_setters_without_getters // ignore_for_file: comment_references // ignore_for_file: deprecated_member_use // ignore_for_file: deprecated_member_use_from_same_package // ignore_for_file: implementation_imports // ignore_for_file: invalid_use_of_visible_for_testing_member // ignore_for_file: must_be_immutable // ignore_for_file: prefer_const_constructors // ignore_for_file: unnecessary_parenthesis // ignore_for_file: camel_case_types // ignore_for_file: subtype_of_sealed_class // ignore_for_file: invalid_use_of_internal_member class _FakeBaseOptions_0 extends _i1.SmartFake implements _i2.BaseOptions { _FakeBaseOptions_0(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeInterceptors_1 extends _i1.SmartFake implements _i3.Interceptors { _FakeInterceptors_1(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeHttpClientAdapter_2 extends _i1.SmartFake implements _i4.HttpClientAdapter { _FakeHttpClientAdapter_2(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeTransformer_3 extends _i1.SmartFake implements _i5.Transformer { _FakeTransformer_3(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeResponse_4 extends _i1.SmartFake implements _i6.Response { _FakeResponse_4(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeDio_5 extends _i1.SmartFake implements _i7.Dio { _FakeDio_5(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeIOSOptions_6 extends _i1.SmartFake implements _i8.IOSOptions { _FakeIOSOptions_6(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeAndroidOptions_7 extends _i1.SmartFake implements _i8.AndroidOptions { _FakeAndroidOptions_7(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeLinuxOptions_8 extends _i1.SmartFake implements _i8.LinuxOptions { _FakeLinuxOptions_8(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeWindowsOptions_9 extends _i1.SmartFake implements _i8.WindowsOptions { _FakeWindowsOptions_9(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeWebOptions_10 extends _i1.SmartFake implements _i8.WebOptions { _FakeWebOptions_10(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } class _FakeMacOsOptions_11 extends _i1.SmartFake implements _i8.MacOsOptions { _FakeMacOsOptions_11(Object parent, Invocation parentInvocation) : super(parent, parentInvocation); } /// A class which mocks [Dio]. /// /// See the documentation for Mockito's code generation for more information. class MockDio extends _i1.Mock implements _i7.Dio { MockDio() { _i1.throwOnMissingStub(this); } @override _i2.BaseOptions get options => (super.noSuchMethod( Invocation.getter(#options), returnValue: _FakeBaseOptions_0(this, Invocation.getter(#options)), ) as _i2.BaseOptions); @override _i3.Interceptors get interceptors => (super.noSuchMethod( Invocation.getter(#interceptors), returnValue: _FakeInterceptors_1( this, Invocation.getter(#interceptors), ), ) as _i3.Interceptors); @override _i4.HttpClientAdapter get httpClientAdapter => (super.noSuchMethod( Invocation.getter(#httpClientAdapter), returnValue: _FakeHttpClientAdapter_2( this, Invocation.getter(#httpClientAdapter), ), ) as _i4.HttpClientAdapter); @override _i5.Transformer get transformer => (super.noSuchMethod( Invocation.getter(#transformer), returnValue: _FakeTransformer_3( this, Invocation.getter(#transformer), ), ) as _i5.Transformer); @override set options(_i2.BaseOptions? value) => super.noSuchMethod( Invocation.setter(#options, value), returnValueForMissingStub: null, ); @override set httpClientAdapter(_i4.HttpClientAdapter? value) => super.noSuchMethod( Invocation.setter(#httpClientAdapter, value), returnValueForMissingStub: null, ); @override set transformer(_i5.Transformer? value) => super.noSuchMethod( Invocation.setter(#transformer, value), returnValueForMissingStub: null, ); @override void close({bool? force = false}) => super.noSuchMethod( Invocation.method(#close, [], {#force: force}), returnValueForMissingStub: null, ); @override _i9.Future<_i6.Response> head( String? path, { Object? data, Map? queryParameters, _i2.Options? options, _i10.CancelToken? cancelToken, }) => (super.noSuchMethod( Invocation.method( #head, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #head, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> headUri( Uri? uri, { Object? data, _i2.Options? options, _i10.CancelToken? cancelToken, }) => (super.noSuchMethod( Invocation.method( #headUri, [uri], {#data: data, #options: options, #cancelToken: cancelToken}, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #headUri, [uri], {#data: data, #options: options, #cancelToken: cancelToken}, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> get( String? path, { Object? data, Map? queryParameters, _i2.Options? options, _i10.CancelToken? cancelToken, _i2.ProgressCallback? onReceiveProgress, }) => (super.noSuchMethod( Invocation.method( #get, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, #onReceiveProgress: onReceiveProgress, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #get, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, #onReceiveProgress: onReceiveProgress, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> getUri( Uri? uri, { Object? data, _i2.Options? options, _i10.CancelToken? cancelToken, _i2.ProgressCallback? onReceiveProgress, }) => (super.noSuchMethod( Invocation.method( #getUri, [uri], { #data: data, #options: options, #cancelToken: cancelToken, #onReceiveProgress: onReceiveProgress, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #getUri, [uri], { #data: data, #options: options, #cancelToken: cancelToken, #onReceiveProgress: onReceiveProgress, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> post( String? path, { Object? data, Map? queryParameters, _i2.Options? options, _i10.CancelToken? cancelToken, _i2.ProgressCallback? onSendProgress, _i2.ProgressCallback? onReceiveProgress, }) => (super.noSuchMethod( Invocation.method( #post, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #post, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> postUri( Uri? uri, { Object? data, _i2.Options? options, _i10.CancelToken? cancelToken, _i2.ProgressCallback? onSendProgress, _i2.ProgressCallback? onReceiveProgress, }) => (super.noSuchMethod( Invocation.method( #postUri, [uri], { #data: data, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #postUri, [uri], { #data: data, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> put( String? path, { Object? data, Map? queryParameters, _i2.Options? options, _i10.CancelToken? cancelToken, _i2.ProgressCallback? onSendProgress, _i2.ProgressCallback? onReceiveProgress, }) => (super.noSuchMethod( Invocation.method( #put, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #put, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> putUri( Uri? uri, { Object? data, _i2.Options? options, _i10.CancelToken? cancelToken, _i2.ProgressCallback? onSendProgress, _i2.ProgressCallback? onReceiveProgress, }) => (super.noSuchMethod( Invocation.method( #putUri, [uri], { #data: data, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #putUri, [uri], { #data: data, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> patch( String? path, { Object? data, Map? queryParameters, _i2.Options? options, _i10.CancelToken? cancelToken, _i2.ProgressCallback? onSendProgress, _i2.ProgressCallback? onReceiveProgress, }) => (super.noSuchMethod( Invocation.method( #patch, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #patch, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> patchUri( Uri? uri, { Object? data, _i2.Options? options, _i10.CancelToken? cancelToken, _i2.ProgressCallback? onSendProgress, _i2.ProgressCallback? onReceiveProgress, }) => (super.noSuchMethod( Invocation.method( #patchUri, [uri], { #data: data, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #patchUri, [uri], { #data: data, #options: options, #cancelToken: cancelToken, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> delete( String? path, { Object? data, Map? queryParameters, _i2.Options? options, _i10.CancelToken? cancelToken, }) => (super.noSuchMethod( Invocation.method( #delete, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #delete, [path], { #data: data, #queryParameters: queryParameters, #options: options, #cancelToken: cancelToken, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> deleteUri( Uri? uri, { Object? data, _i2.Options? options, _i10.CancelToken? cancelToken, }) => (super.noSuchMethod( Invocation.method( #deleteUri, [uri], {#data: data, #options: options, #cancelToken: cancelToken}, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #deleteUri, [uri], {#data: data, #options: options, #cancelToken: cancelToken}, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> download( String? urlPath, dynamic savePath, { _i2.ProgressCallback? onReceiveProgress, Map? queryParameters, _i10.CancelToken? cancelToken, bool? deleteOnError = true, _i2.FileAccessMode? fileAccessMode = _i2.FileAccessMode.write, String? lengthHeader = 'content-length', Object? data, _i2.Options? options, }) => (super.noSuchMethod( Invocation.method( #download, [urlPath, savePath], { #onReceiveProgress: onReceiveProgress, #queryParameters: queryParameters, #cancelToken: cancelToken, #deleteOnError: deleteOnError, #fileAccessMode: fileAccessMode, #lengthHeader: lengthHeader, #data: data, #options: options, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #download, [urlPath, savePath], { #onReceiveProgress: onReceiveProgress, #queryParameters: queryParameters, #cancelToken: cancelToken, #deleteOnError: deleteOnError, #fileAccessMode: fileAccessMode, #lengthHeader: lengthHeader, #data: data, #options: options, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> downloadUri( Uri? uri, dynamic savePath, { _i2.ProgressCallback? onReceiveProgress, _i10.CancelToken? cancelToken, bool? deleteOnError = true, _i2.FileAccessMode? fileAccessMode = _i2.FileAccessMode.write, String? lengthHeader = 'content-length', Object? data, _i2.Options? options, }) => (super.noSuchMethod( Invocation.method( #downloadUri, [uri, savePath], { #onReceiveProgress: onReceiveProgress, #cancelToken: cancelToken, #deleteOnError: deleteOnError, #fileAccessMode: fileAccessMode, #lengthHeader: lengthHeader, #data: data, #options: options, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #downloadUri, [uri, savePath], { #onReceiveProgress: onReceiveProgress, #cancelToken: cancelToken, #deleteOnError: deleteOnError, #fileAccessMode: fileAccessMode, #lengthHeader: lengthHeader, #data: data, #options: options, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> request( String? url, { Object? data, Map? queryParameters, _i10.CancelToken? cancelToken, _i2.Options? options, _i2.ProgressCallback? onSendProgress, _i2.ProgressCallback? onReceiveProgress, }) => (super.noSuchMethod( Invocation.method( #request, [url], { #data: data, #queryParameters: queryParameters, #cancelToken: cancelToken, #options: options, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #request, [url], { #data: data, #queryParameters: queryParameters, #cancelToken: cancelToken, #options: options, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> requestUri( Uri? uri, { Object? data, _i10.CancelToken? cancelToken, _i2.Options? options, _i2.ProgressCallback? onSendProgress, _i2.ProgressCallback? onReceiveProgress, }) => (super.noSuchMethod( Invocation.method( #requestUri, [uri], { #data: data, #cancelToken: cancelToken, #options: options, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method( #requestUri, [uri], { #data: data, #cancelToken: cancelToken, #options: options, #onSendProgress: onSendProgress, #onReceiveProgress: onReceiveProgress, }, ), ), ), ) as _i9.Future<_i6.Response>); @override _i9.Future<_i6.Response> fetch(_i2.RequestOptions? requestOptions) => (super.noSuchMethod( Invocation.method(#fetch, [requestOptions]), returnValue: _i9.Future<_i6.Response>.value( _FakeResponse_4( this, Invocation.method(#fetch, [requestOptions]), ), ), ) as _i9.Future<_i6.Response>); @override _i7.Dio clone({ _i2.BaseOptions? options, _i3.Interceptors? interceptors, _i4.HttpClientAdapter? httpClientAdapter, _i5.Transformer? transformer, }) => (super.noSuchMethod( Invocation.method(#clone, [], { #options: options, #interceptors: interceptors, #httpClientAdapter: httpClientAdapter, #transformer: transformer, }), returnValue: _FakeDio_5( this, Invocation.method(#clone, [], { #options: options, #interceptors: interceptors, #httpClientAdapter: httpClientAdapter, #transformer: transformer, }), ), ) as _i7.Dio); } /// A class which mocks [FlutterSecureStorage]. /// /// See the documentation for Mockito's code generation for more information. class MockFlutterSecureStorage extends _i1.Mock implements _i8.FlutterSecureStorage { MockFlutterSecureStorage() { _i1.throwOnMissingStub(this); } @override _i8.IOSOptions get iOptions => (super.noSuchMethod( Invocation.getter(#iOptions), returnValue: _FakeIOSOptions_6(this, Invocation.getter(#iOptions)), ) as _i8.IOSOptions); @override _i8.AndroidOptions get aOptions => (super.noSuchMethod( Invocation.getter(#aOptions), returnValue: _FakeAndroidOptions_7( this, Invocation.getter(#aOptions), ), ) as _i8.AndroidOptions); @override _i8.LinuxOptions get lOptions => (super.noSuchMethod( Invocation.getter(#lOptions), returnValue: _FakeLinuxOptions_8( this, Invocation.getter(#lOptions), ), ) as _i8.LinuxOptions); @override _i8.WindowsOptions get wOptions => (super.noSuchMethod( Invocation.getter(#wOptions), returnValue: _FakeWindowsOptions_9( this, Invocation.getter(#wOptions), ), ) as _i8.WindowsOptions); @override _i8.WebOptions get webOptions => (super.noSuchMethod( Invocation.getter(#webOptions), returnValue: _FakeWebOptions_10( this, Invocation.getter(#webOptions), ), ) as _i8.WebOptions); @override _i8.MacOsOptions get mOptions => (super.noSuchMethod( Invocation.getter(#mOptions), returnValue: _FakeMacOsOptions_11( this, Invocation.getter(#mOptions), ), ) as _i8.MacOsOptions); @override void registerListener({ required String? key, required _i11.ValueChanged? listener, }) => super.noSuchMethod( Invocation.method(#registerListener, [], {#key: key, #listener: listener}), returnValueForMissingStub: null, ); @override void unregisterListener({ required String? key, required _i11.ValueChanged? listener, }) => super.noSuchMethod( Invocation.method(#unregisterListener, [], { #key: key, #listener: listener, }), returnValueForMissingStub: null, ); @override void unregisterAllListenersForKey({required String? key}) => super.noSuchMethod( Invocation.method(#unregisterAllListenersForKey, [], {#key: key}), returnValueForMissingStub: null, ); @override void unregisterAllListeners() => super.noSuchMethod( Invocation.method(#unregisterAllListeners, []), returnValueForMissingStub: null, ); @override _i9.Future write({ required String? key, required String? value, _i8.IOSOptions? iOptions, _i8.AndroidOptions? aOptions, _i8.LinuxOptions? lOptions, _i8.WebOptions? webOptions, _i8.MacOsOptions? mOptions, _i8.WindowsOptions? wOptions, }) => (super.noSuchMethod( Invocation.method(#write, [], { #key: key, #value: value, #iOptions: iOptions, #aOptions: aOptions, #lOptions: lOptions, #webOptions: webOptions, #mOptions: mOptions, #wOptions: wOptions, }), returnValue: _i9.Future.value(), returnValueForMissingStub: _i9.Future.value(), ) as _i9.Future); @override _i9.Future read({ required String? key, _i8.IOSOptions? iOptions, _i8.AndroidOptions? aOptions, _i8.LinuxOptions? lOptions, _i8.WebOptions? webOptions, _i8.MacOsOptions? mOptions, _i8.WindowsOptions? wOptions, }) => (super.noSuchMethod( Invocation.method(#read, [], { #key: key, #iOptions: iOptions, #aOptions: aOptions, #lOptions: lOptions, #webOptions: webOptions, #mOptions: mOptions, #wOptions: wOptions, }), returnValue: _i9.Future.value(), ) as _i9.Future); @override _i9.Future containsKey({ required String? key, _i8.IOSOptions? iOptions, _i8.AndroidOptions? aOptions, _i8.LinuxOptions? lOptions, _i8.WebOptions? webOptions, _i8.MacOsOptions? mOptions, _i8.WindowsOptions? wOptions, }) => (super.noSuchMethod( Invocation.method(#containsKey, [], { #key: key, #iOptions: iOptions, #aOptions: aOptions, #lOptions: lOptions, #webOptions: webOptions, #mOptions: mOptions, #wOptions: wOptions, }), returnValue: _i9.Future.value(false), ) as _i9.Future); @override _i9.Future delete({ required String? key, _i8.IOSOptions? iOptions, _i8.AndroidOptions? aOptions, _i8.LinuxOptions? lOptions, _i8.WebOptions? webOptions, _i8.MacOsOptions? mOptions, _i8.WindowsOptions? wOptions, }) => (super.noSuchMethod( Invocation.method(#delete, [], { #key: key, #iOptions: iOptions, #aOptions: aOptions, #lOptions: lOptions, #webOptions: webOptions, #mOptions: mOptions, #wOptions: wOptions, }), returnValue: _i9.Future.value(), returnValueForMissingStub: _i9.Future.value(), ) as _i9.Future); @override _i9.Future> readAll({ _i8.IOSOptions? iOptions, _i8.AndroidOptions? aOptions, _i8.LinuxOptions? lOptions, _i8.WebOptions? webOptions, _i8.MacOsOptions? mOptions, _i8.WindowsOptions? wOptions, }) => (super.noSuchMethod( Invocation.method(#readAll, [], { #iOptions: iOptions, #aOptions: aOptions, #lOptions: lOptions, #webOptions: webOptions, #mOptions: mOptions, #wOptions: wOptions, }), returnValue: _i9.Future>.value( {}, ), ) as _i9.Future>); @override _i9.Future deleteAll({ _i8.IOSOptions? iOptions, _i8.AndroidOptions? aOptions, _i8.LinuxOptions? lOptions, _i8.WebOptions? webOptions, _i8.MacOsOptions? mOptions, _i8.WindowsOptions? wOptions, }) => (super.noSuchMethod( Invocation.method(#deleteAll, [], { #iOptions: iOptions, #aOptions: aOptions, #lOptions: lOptions, #webOptions: webOptions, #mOptions: mOptions, #wOptions: wOptions, }), returnValue: _i9.Future.value(), returnValueForMissingStub: _i9.Future.value(), ) as _i9.Future); @override _i9.Future isCupertinoProtectedDataAvailable() => (super.noSuchMethod( Invocation.method(#isCupertinoProtectedDataAvailable, []), returnValue: _i9.Future.value(), ) as _i9.Future); }