// GENERATED CODE - DO NOT MODIFY BY HAND part of 'env.config.dart'; // ************************************************************************** // JsonSerializableGenerator // ************************************************************************** EnvConfig _$EnvConfigFromJson(Map json) => EnvConfig( clientId: json['clientId'] as String, clientSecret: json['clientSecret'] as String?, authority: json['authority'] as String, baseUrl: json['baseUrl'] as String, uploadFilesUrl: json['uploadFilesUrl'] as String?, staticFilesUrl: json['staticFilesUrl'] as String?, tenantKey: json['tenantKey'] as String? ?? '__tenant', defaultLanguage: json['defaultLanguage'] as String? ?? 'en', notifications: json['notifications'] == null ? null : NotificationConfig.fromJson( json['notifications'] as Map), ); NotificationConfig _$NotificationConfigFromJson(Map json) => NotificationConfig( android: json['android'] == null ? null : AndroidNotification.fromJson( json['android'] as Map), darwin: json['darwin'] == null ? null : DarwinNotification.fromJson(json['darwin'] as Map), linux: json['linux'] == null ? null : LinuxNotification.fromJson(json['linux'] as Map), ); LinuxNotification _$LinuxNotificationFromJson(Map json) => LinuxNotification( defaultActionName: json['defaultActionName'] as String, ); AndroidNotification _$AndroidNotificationFromJson(Map json) => AndroidNotification( channelId: json['channelId'] as String, channelName: json['channelName'] as String, channelDescription: json['channelDescription'] as String?, ); DarwinNotification _$DarwinNotificationFromJson(Map json) => DarwinNotification();