getCountriesById method
Returns information about countries by their IDs.
Params:
country_ids
(array) Country IDs.
Implementation
Future<dynamic> getCountriesById([Map<String, dynamic> params]) async {
return _api.request('database.getCountriesById', {
...?params,
});
}