delete method

Future<bool> delete()

Implementation

Future<bool> delete() async {
  await client.delete(AppStoreConnectUri.v2('inAppPurchases/$id'));
  return true;
}