mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
16 lines
380 B
Dart
16 lines
380 B
Dart
|
import 'package:nc_photos/entity/file.dart';
|
||
|
import 'package:np_geocoder/np_geocoder.dart';
|
||
|
|
||
|
extension ReverseGeocoderExtension on ReverseGeocoderLocation {
|
||
|
ImageLocation toImageLocation() {
|
||
|
return ImageLocation(
|
||
|
name: name,
|
||
|
latitude: latitude,
|
||
|
longitude: longitude,
|
||
|
countryCode: countryCode,
|
||
|
admin1: admin1,
|
||
|
admin2: admin2,
|
||
|
);
|
||
|
}
|
||
|
}
|