OkHiAppConfiguration.withRawValue constructor

OkHiAppConfiguration.withRawValue({
  1. required String branchId,
  2. required String clientKey,
  3. required String environmentRawValue,
  4. OkHiAndroidNotification? notification,
})

Implementation

OkHiAppConfiguration.withRawValue(
    {required this.branchId,
    required this.clientKey,
    required this.environmentRawValue,
    OkHiAndroidNotification? notification}) {
  this.notification = notification ?? OkHiAndroidNotification.withDefaults();
}