From 260b4ed0ac7a2cc30f42a5eccf8a0d3f1857c7b1 Mon Sep 17 00:00:00 2001 From: Xinyi Ye Date: Wed, 7 Feb 2024 16:03:09 -0800 Subject: [PATCH] Update base_event.dart --- lib/events/base_event.dart | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/events/base_event.dart b/lib/events/base_event.dart index 748eb94..24845ab 100644 --- a/lib/events/base_event.dart +++ b/lib/events/base_event.dart @@ -159,8 +159,7 @@ class BaseEvent extends EventOptions { if (options.osName != null) osName = options.osName!; if (options.osVersion != null) osVersion = options.osVersion!; if (options.deviceBrand != null) deviceBrand = options.deviceBrand!; - if (options.deviceManufacturer != null) - deviceManufacturer = options.deviceManufacturer!; + if (options.deviceManufacturer != null) deviceManufacturer = options.deviceManufacturer!; if (options.deviceModel != null) deviceModel = options.deviceModel!; if (options.carrier != null) carrier = options.carrier!; if (options.country != null) country = options.country!; @@ -176,8 +175,7 @@ class BaseEvent extends EventOptions { if (options.library != null) library = options.library!; if (options.ip != null) ip = options.ip!; if (options.plan != null) plan = options.plan!; - if (options.ingestionMetadata != null) - ingestionMetadata = options.ingestionMetadata!; + if (options.ingestionMetadata != null) ingestionMetadata = options.ingestionMetadata!; if (options.revenue != null) revenue = options.revenue!; if (options.price != null) price = options.price!; if (options.quantity != null) quantity = options.quantity!;