fetchPurchaseHistory static method

Future<List<String>> fetchPurchaseHistory()

Implementation

static Future<List<String>> fetchPurchaseHistory() async {
  List<dynamic> history = await _channel.invokeMethod('fetchPurchaseHistory');
  return history.cast<String>();
}