updateUserProfilePicture method
Future<Either<Failure, String?> >
updateUserProfilePicture(
- AuthenticationData? authData,
- String? imagePath
override
Implementation
@override
Future<Either<Failure, String?>> updateUserProfilePicture(
AuthenticationData? authData, String? imagePath) async {
return super.noSuchMethod(
Invocation.method(#updateUserProfilePicture, [authData, imagePath]),
returnValueForMissingStub: Future.value(right<Failure, String?>(null)),
returnValue: Future.value(right<Failure, String?>(null)),
);
}