updateUserProfilePicture method

  1. @override
Future<Either<Failure, String?>> updateUserProfilePicture(
  1. AuthenticationData? authData,
  2. 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)),
  );
}