android_params.g.dart 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // GENERATED CODE - DO NOT MODIFY BY HAND
  2. part of 'android_params.dart';
  3. // **************************************************************************
  4. // JsonSerializableGenerator
  5. // **************************************************************************
  6. AndroidParams _$AndroidParamsFromJson(Map<String, dynamic> json) =>
  7. AndroidParams(
  8. isCustomNotification: json['isCustomNotification'] as bool?,
  9. isCustomSmallExNotification: json['isCustomSmallExNotification'] as bool?,
  10. isShowLogo: json['isShowLogo'] as bool?,
  11. logoUrl: json['logoUrl'] as String?,
  12. isShowCallID: json['isShowCallID'] as bool?,
  13. ringtonePath: json['ringtonePath'] as String?,
  14. backgroundColor: json['backgroundColor'] as String?,
  15. backgroundUrl: json['backgroundUrl'] as String?,
  16. actionColor: json['actionColor'] as String?,
  17. textColor: json['textColor'] as String?,
  18. incomingCallNotificationChannelName:
  19. json['incomingCallNotificationChannelName'] as String?,
  20. missedCallNotificationChannelName:
  21. json['missedCallNotificationChannelName'] as String?,
  22. isShowFullLockedScreen: json['isShowFullLockedScreen'] as bool?,
  23. isImportant: json['isImportant'] as bool?,
  24. isBot: json['isBot'] as bool?,
  25. );
  26. Map<String, dynamic> _$AndroidParamsToJson(AndroidParams instance) =>
  27. <String, dynamic>{
  28. 'isCustomNotification': instance.isCustomNotification,
  29. 'isCustomSmallExNotification': instance.isCustomSmallExNotification,
  30. 'isShowLogo': instance.isShowLogo,
  31. 'logoUrl': instance.logoUrl,
  32. 'isShowCallID': instance.isShowCallID,
  33. 'ringtonePath': instance.ringtonePath,
  34. 'backgroundColor': instance.backgroundColor,
  35. 'backgroundUrl': instance.backgroundUrl,
  36. 'actionColor': instance.actionColor,
  37. 'textColor': instance.textColor,
  38. 'incomingCallNotificationChannelName':
  39. instance.incomingCallNotificationChannelName,
  40. 'missedCallNotificationChannelName':
  41. instance.missedCallNotificationChannelName,
  42. 'isShowFullLockedScreen': instance.isShowFullLockedScreen,
  43. 'isImportant': instance.isImportant,
  44. 'isBot': instance.isBot,
  45. };