ContextualCredential constructor

ContextualCredential({
  1. String customerId = '',
  2. int appUsageDays = 30,
  3. bool forceInit = false,
  4. required String apiPassword,
  5. required String apiUsername,
  6. required String authApiUrl,
  7. required String sendDataApiUrl,
})

Implementation

ContextualCredential(
    {this.customerId = '',
    this.appUsageDays = 30,
    this.forceInit = false,
    required this.apiPassword,
    required this.apiUsername,
    required this.authApiUrl,
    required this.sendDataApiUrl});