getCountryById method

Future<List> getCountryById({
  1. required String countryId,
})

Get a specific country by id

Implementation

Future<List<dynamic>> getCountryById({
  required String countryId,
}) async {
  return await getCountryByIdV1(
    connection: _connection,
    countryId: countryId,
  );
}