CombainSDKConfig constructor
CombainSDKConfig({
- required String apiKey,
- required String settingsKey,
- required FlutterAppInfo appInfo,
- FlutterLocationProvider? locationProvider,
- bool? enableAutomaticMode,
- FlutterRoutingConfig? routingConfig,
- FlutterSyncingInterval? syncingInterval,
- String? language,
- String? brokerUrl,
- bool? wifiEnabled,
- bool? bluetoothEnabled,
- List<
String?> ? beaconUUIDs,
Implementation
CombainSDKConfig({
required String apiKey,
required String settingsKey,
required FlutterAppInfo appInfo,
FlutterLocationProvider? locationProvider,
bool? enableAutomaticMode,
FlutterRoutingConfig? routingConfig,
FlutterSyncingInterval? syncingInterval,
String? language,
String? brokerUrl,
bool? wifiEnabled,
bool? bluetoothEnabled,
List<String?>? beaconUUIDs,
}) : super(
apiKey: apiKey,
settingsKey: settingsKey,
appInfo: appInfo,
locationProvider: locationProvider,
enableAutomaticMode: enableAutomaticMode,
routingConfig: routingConfig ?? defaultRoutingConfig,
syncingInterval: syncingInterval ?? defaultSyncingInterval,
language: language,
brokerUrl: brokerUrl,
wifiEnabled: wifiEnabled ?? true,
bluetoothEnabled: bluetoothEnabled ?? true,
beaconUUIDs: beaconUUIDs,
);