SyncEvent constructor

SyncEvent({
  1. required String featureKey,
  2. DateTime? timestamp,
})

Implementation

SyncEvent({
  required this.featureKey,
  DateTime? timestamp,
}) : timestamp = timestamp ?? DateTime.now();