getDetailedShopInformation method
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,
},
);
}