StreetViewConfig constructor

const StreetViewConfig({
  1. required String apiKey,
  2. int imageWidth = 600,
  3. int imageHeight = 300,
})

Implementation

const StreetViewConfig({
  required this.apiKey,
  this.imageWidth = 600,
  this.imageHeight = 300,
});