JMapConfig constructor

const JMapConfig(
  1. String host,
  2. String clientID,
  3. String clientSecret,
  4. int customerID,
  5. int venueID,
  6. int buildingId,
  7. int floorId,
)

Creates a JMapConfig instance.

The host, clientID, clientSecret, customerID, venueID, buildingId, and floorId parameters are required to initialize the configuration.

Implementation

const JMapConfig(
  this.host,
  this.clientID,
  this.clientSecret,
  this.customerID,
  this.venueID,
  this.buildingId,
  this.floorId,
);