acceptSaveOfferForCurrentUser method
1.3.0 no-userId overload — uses the currently identified user.
Implementation
@override
Future<Map<String, dynamic>> acceptSaveOfferForCurrentUser({required String productId}) async {
final result = await methodChannel.invokeMethod<Map>('acceptSaveOffer', {
'productId': productId,
});
return Map<String, dynamic>.from(result!);
}