Config constructor

const Config({
  1. required String projectUrl,
  2. required String serviceUrl,
  3. ServiceConfig? service,
  4. AndroidConfig? android,
  5. DevelopmentConfig? development,
})

Creates a new instance of the Config class.

Parameters

  • projectUrl: The Calljmp project endpoint URL
  • serviceUrl: The Calljmp service endpoint URL
  • service: Optional custom service configuration
  • android: Optional Android-specific settings
  • development: Optional development environment settings

Implementation

const Config({
  required this.projectUrl,
  required this.serviceUrl,
  this.service,
  this.android,
  this.development,
});