- Remove all 31 avoid_print debug statements across codebase - Fix 8 critical warnings (unused variables, unreachable defaults, etc) - Update deprecated APIs: launch() → launchUrl(), textScaleFactor → textScaler - Replace deprecated surfaceVariant → surfaceContainerHighest in Material 3 themes - Refactor switch statements to use modern pattern matching - Remove unused code: _showDialog, _initNoLocation, _getAnchorOffset - Fix use_build_context_synchronously by adding mounted checks - Add ignore_for_file annotations to generated JSON serialization files - Fix type annotations in appState.dart and models Warnings reduced from 301 to 246 issues (8 → 0 critical warnings). Build verified: app-production-debug.apk (160MB) compiles successfully. Zero type errors, Dart analysis clean for critical issues.
38 lines
1.4 KiB
Dart
38 lines
1.4 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'fireNotification.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
FireNotification _$FireNotificationFromJson(Map json) => $checkedCreate(
|
|
'FireNotification',
|
|
json,
|
|
($checkedConvert) {
|
|
final val = FireNotification(
|
|
id: $checkedConvert('id', (v) => objectIdFromJson(v as String)),
|
|
lat: $checkedConvert('lat', (v) => (v as num).toDouble()),
|
|
lon: $checkedConvert('lon', (v) => (v as num).toDouble()),
|
|
description: $checkedConvert('description', (v) => v as String),
|
|
when: $checkedConvert('when', (v) => DateTime.parse(v as String)),
|
|
read: $checkedConvert('read', (v) => v as bool),
|
|
sealed: $checkedConvert('sealed', (v) => v as String),
|
|
subsId:
|
|
$checkedConvert('subsId', (v) => objectIdFromJson(v as String)),
|
|
);
|
|
return val;
|
|
},
|
|
);
|
|
|
|
Map<String, dynamic> _$FireNotificationToJson(FireNotification instance) =>
|
|
<String, dynamic>{
|
|
'id': objectIdToJson(instance.id),
|
|
'lat': instance.lat,
|
|
'lon': instance.lon,
|
|
'description': instance.description,
|
|
'when': instance.when.toIso8601String(),
|
|
'sealed': instance.sealed,
|
|
'subsId': objectIdToJson(instance.subsId),
|
|
'read': instance.read,
|
|
};
|