import 'package:flutter_keychain/flutter_keychain.dart'; class IAPPendingOrderService { static const _key = 'hi_iap_pending_order_no'; static Future setPendingOrderNo(String orderNo) async { await FlutterKeychain.put(key: _key, value: orderNo); } static Future getPendingOrderNo() async { return await FlutterKeychain.get(key: _key); } static Future clearPendingOrderNo() async { await FlutterKeychain.remove(key: _key); } }