alpha2_countries 1.0.5
Alpha 2 countries #
ISO 3166-1 alpha-2 country codes for Dart. Based on alpha2-countries npm package by @slatkovic.
Usage #
final countries = Countries();
final code = await countries.resolveCode('Estonia');
final name = await countries.resolveName('EE');
1.0.5 #
- Made API synchronous.
1.0.4 #
- Made resolving case insensitive.
1.0.3 #
- Inlined json data.
1.0.2 #
- Using
resources
package to load countries.
1.0.1 #
- Broadened the env restrictions to support Flutter.
1.0.0 #
- Initial version with resolving by code and by name supported. Contains 249 countries.
Use this package as a library
1. Depend on it
Add this to your package's pubspec.yaml file:
dependencies:
alpha2_countries: ^1.0.5
2. Install it
You can install packages from the command line:
with pub:
$ pub get
with Flutter:
$ flutter pub get
Alternatively, your editor might support pub get
or flutter pub get
.
Check the docs for your editor to learn more.
3. Import it
Now in your Dart code, you can use:
import 'package:alpha2_countries/alpha2_countries.dart';
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
71
|
Health:
Code health derived from static analysis.
[more]
|
99
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
34
|
Overall:
Weighted score of the above.
[more]
|
72
|
We analyzed this package on Dec 10, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
- Dart: 2.7.0
- pana: 0.13.1+4
Health issues and suggestions
Document public APIs. (-1 points)
8 out of 8 API elements have no dartdoc comment.Providing good documentation for libraries, classes, functions, and other API elements improves code readability and helps developers find and use your API.
Fix lib/alpha2_countries.dart
. (-0.50 points)
Analysis of lib/alpha2_countries.dart
reported 1 hint:
line 8 col 39: Unnecessary new keyword.
Maintenance suggestions
Package is getting outdated. (-36.16 points)
The package was last published 71 weeks ago.
The package description is too short. (-20 points)
Add more detail to the description
field of pubspec.yaml
. Use 60 to 180 characters to describe the package, what it does, and its target use case.
Maintain an example. (-10 points)
Create a short demo in the example/
directory to show how to use this package.
Common filename patterns include main.dart
, example.dart
, and alpha2_countries.dart
. Packages with multiple examples should provide example/README.md
.
For more information see the pub package layout conventions.