getworld 1.0.1
getworld: ^1.0.1 copied to clipboard
A dart package to get countries, languages and currencies data.
import 'package:getworld/getworld.dart';
void main() {
Stopwatch stopwatch = Stopwatch()..start();
GetWorld().initialize();
print(Countries.length);
print(Currencies.hasCode2("EGP")![0].full_name);
print(Languages.length);
print('doSomething() executed in ${stopwatch.elapsed}');
}