createReviewScreenshot method

Implementation

Future<InAppPurchaseAppStoreReviewScreenshot> createReviewScreenshot(
    InAppPurchaseAppStoreReviewScreenshotCreateAttributes attributes) async {
  return await client.postModel(
    AppStoreConnectUri.v1(),
    'inAppPurchaseAppStoreReviewScreenshots',
    attributes: attributes,
    relationships: {
      'inAppPurchaseV2': SingleModelRelationship(type: 'inAppPurchases', id: id),
    },
  );
}