OkHiLocationManagerConfiguration constructor
OkHiLocationManagerConfiguration({})
Implementation
OkHiLocationManagerConfiguration({
String? color,
String? logoUrl,
bool? withAppBar,
bool? withStreetView,
bool? withHomeAddressType,
bool? withWorkAddressType,
bool? withCreateMode,
bool? withPermissionsOnboarding,
List<UsageType>? usageTypes,
this.locationId,
}) {
this.color = color ?? "#005d67";
this.withCreateMode = withCreateMode ?? false;
this.logoUrl = logoUrl ?? OkHiConstant.okhiLogoUrl;
this.withAppBar = withAppBar ?? true;
this.withStreetView = withStreetView ?? true;
this.withHomeAddressType = withHomeAddressType ?? true;
this.withWorkAddressType = withWorkAddressType ?? true;
this.usageTypes = usageTypes ?? [UsageType.digitalVerification];
}