mirror of
https://github.com/ente-io/ente.git
synced 2025-07-01 13:13:35 +00:00
## 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>
20 lines
643 B
Dart
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,
|
|
};
|