dotup_dart_geolocation_core 0.1.2 dotup_dart_geolocation_core: ^0.1.2 copied to clipboard
A small dart package with common geo location types.
example/dotup_dart_geolocation_core_example.dart
import 'package:dotup_dart_geolocation_core/dotup_dart_geolocation_core.dart';
void main() {
var address = Address();
print(address.hashCode);
var add = AddressWithGeoLocation();
print(add.hashCode);
print('awesome: ${address.asSingleLineString()}');
}