receipts property

List<String> receipts

get epic purchase receipts for the profile

Implementation

List<String> get receipts {
  confirmInitialized();

  if (stats["in_app_purchases"]?["receipts"] == null) {
    return [];
  }

  return (stats["in_app_purchases"]["receipts"] as List<dynamic>)
      .cast<String>();
}