ente/mobile/lib/models/location/location.g.dart
Ashil bb90b2d3bc
[mob][photos] Upgrade flutter (#1434)
## Description

- Update flutter
- Update packages
- Fix UI issues because of update (material 3)
- bump up version to v0.8.80

## Tests

- [x] Building on android and iOS.

---------

Co-authored-by: Neeraj Gupta <254676+ua741@users.noreply.github.com>
2024-04-15 10:21:18 +05:30

20 lines
643 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'location.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
_$LocationImpl _$$LocationImplFromJson(Map<String, dynamic> json) =>
_$LocationImpl(
latitude: (json['latitude'] as num?)?.toDouble(),
longitude: (json['longitude'] as num?)?.toDouble(),
);
Map<String, dynamic> _$$LocationImplToJson(_$LocationImpl instance) =>
<String, dynamic>{
'latitude': instance.latitude,
'longitude': instance.longitude,
};