Skip to content

Commit

Permalink
Update base_event.dart
Browse files Browse the repository at this point in the history
  • Loading branch information
Mercy811 committed Feb 8, 2024
1 parent ad8e20e commit 260b4ed
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/events/base_event.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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!;
Expand All @@ -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!;
Expand Down

0 comments on commit 260b4ed

Please sign in to comment.