OkHiLocationManagerConfiguration constructor
OkHiLocationManagerConfiguration({})
Implementation
OkHiLocationManagerConfiguration({
String? color,
String? logoUrl,
bool? withAppBar,
bool? withStreetView,
}) {
this.color = color ?? "#005d67";
this.logoUrl = logoUrl ?? OkHiConstant.okhiLogoUrl;
this.withAppBar = withAppBar ?? true;
this.withStreetView = withStreetView ?? true;
}