loadOffers method

Future<bool> loadOffers(
  1. Map attributes
)

LoadOffers with specified attributes, attributes should be of Map type. attribute key-value should be from specific values which you can get from adspostx documentation website https://docs.adspostx.com/. Returns a bool indicating that if loadOffers call is successful or not. In case of error it can also throw exceptions.

Implementation

Future<bool> loadOffers(Map attributes) async {
  throw UnimplementedError('loadOffers() has not been implemented.');
}