call method

Future<Either<APIErrors, ImageUploadResponse>> call({
  1. required String localFilePath,
})

Implementation

Future<Either<APIErrors, ImageUploadResponse>> call({
  required String localFilePath,
}) {
  return repository.uploadImageToS3Server(localFilePath: localFilePath);
}