getDetailedShopInformation method

Future<DetailedShopInformation> getDetailedShopInformation({
  1. required String shopId,
})

Implementation

Future<DetailedShopInformation> getDetailedShopInformation({
  required String shopId,
}) async {
  return await invokeMethod<DetailedShopInformation>(
    (j) => DetailedShopInformation.fromJson(j),
    'getDetailedShopInformation',
    {
      'env': this.env.index,
      'accessToken': this.accessToken,
      'shop_id': shopId,
    },
  );
}