xsoulspace_review 0.1.0 copy "xsoulspace_review: ^0.1.0" to clipboard
xsoulspace_review: ^0.1.0 copied to clipboard

PlatformAndroid

Useful tools for review for stores and user feedback

xsoulspace_review Package #

The main purpose is to unite and simplify the process of requesting reviews from various stores.

Currently, the package supports the following stores:

Native support: #

  • Snapstore

Usage #

import 'package:xsoulspace_review/xsoulspace_review.dart';

void onLoad() {
  /// this will create a store reviewer specific to
  /// installation source. This is made via
  /// [store_checker](https://pub.dev/packages/store_checker)
  /// package and additional methods from [xsoulspace_foundation](https://pub.dev/packages/xsoulspace_foundation).
  StoreReviewerFactory.create();
}

or use StoreReviewRequester to initialize the store review requester and schedule reviews.

final storeReviewRequester = StoreReviewRequester();

Future<void> onLoad() async {
  await storeReviewRequester.onLoad();
}

void dispose() {
  storeReviewRequester.dispose();
}