acceptPromotionRequest method

Future<void> acceptPromotionRequest({
  1. required String promoteeAddress,
})

Promotion request is accepted by the host

Implementation

Future<void> acceptPromotionRequest({required String promoteeAddress}) async {
  final result = await acceptPromotionRequest_(
      data: data, promoteeAddress: promoteeAddress);
  data = result;
  notifyListeners();
}