TARSettings constructor

TARSettings({
  1. String apiKey = '',
  2. String language = '',
  3. bool mapMode = true,
  4. bool walletMode = true,
  5. bool paintingMode = true,
  6. dynamic colorPalette,
  7. TARStartMode startMode = TARStartMode.geo,
  8. bool useProduction = true,
  9. int uiVersion = 1,
})

Implementation

TARSettings({
  this.apiKey = '',
  this.language = '',
  this.mapMode = true,
  this.walletMode = true,
  this.paintingMode = true,
  colorPalette,
  this.startMode = TARStartMode.geo,
  this.useProduction = true,
  this.uiVersion = 1,
}) {
  this.colorPalette = colorPalette ?? {};
}