dotup_dart_geolocation_core 0.1.1 copy "dotup_dart_geolocation_core: ^0.1.1" to clipboard
dotup_dart_geolocation_core: ^0.1.1 copied to clipboard

outdated

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()}');
}