getListOfShops method
Implementation
Future<PaginatedShops> getListOfShops() async {
return await invokeMethod<PaginatedShops>(
(j) => PaginatedShops.fromJson(j),
'getListOfShops',
{
'env': this.env.index,
'accessToken': this.accessToken,
},
);
}