ScreenArguments constructor

ScreenArguments({
  1. required String apiKey,
  2. required String customerId,
  3. required String externalUserId,
  4. String? companyId,
  5. String? token,
})

Implementation

ScreenArguments({
  required this.apiKey,
  required this.customerId,
  required this.externalUserId,
  this.companyId,
  this.token,
});