Skip to content

Commit

Permalink
chore: should use single quote marks
Browse files Browse the repository at this point in the history
  • Loading branch information
Mercy811 committed Mar 12, 2024
1 parent fa0b4b9 commit cf17c66
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lib/constants.dart
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
class Constants {
static const packageName = "amplitude-flutter";
static const packageVersion = "3.16.1";
static const identify_event = "\$identify";
static const group_identify_event = "\$groupidentify";
static const revenue_event = "revenue_amount";
static const packageName = 'amplitude-flutter';
static const packageVersion = '3.16.1';
static const identify_event = '\$identify';
static const group_identify_event = '\$groupidentify';
static const revenue_event = 'revenue_amount';

static const flushQueueSize = 30;
static const flushIntervalMillis = 30 * 1000; // 30 seconds
static const identifyBatchIntervalMillis = 30 * 1000; // 30 seconds
static const defaultInstanceName = "\$default_instance";
static const logLevel = "info";
static const defaultInstanceName = '\$default_instance';
static const logLevel = 'info';
static const flushMaxRetries = 5;
static const minTimeBetweenSessionsMillis = 5 * 60 * 1000; // 5 minutes
}
Expand Down

0 comments on commit cf17c66

Please sign in to comment.