getListOfShops method

Future<PaginatedShops> getListOfShops()

Implementation

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