ContextualCredential constructor

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

Implementation

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