OkHiLocationManagerConfiguration constructor

OkHiLocationManagerConfiguration({
  1. String? color,
  2. String? logoUrl,
  3. bool? withAppBar,
  4. bool? withStreetView,
})

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;
}