SdkParameter constructor

const SdkParameter({
  1. required String apiKey,
  2. required String siteId,
  3. required bool pushEnabled,
  4. bool isSubscribed = true,
})

Implementation

const SdkParameter({
  required this.apiKey,
  required this.siteId,
  required this.pushEnabled,
  this.isSubscribed = true,
});