getStore static method

Future<List<Store>> getStore({
  1. int page = 1,
})

Get a list of Store

Implementation

static Future<List<Store>> getStore({int page = 1}) async {
  return RawgUtils.store(page);
}