OperatorCredentials constructor

OperatorCredentials({
  1. required CredentialsPayload payload,
  2. String? clientId,
  3. int? categoryId,
  4. String? region,
  5. String? timestamp,
})

Implementation

OperatorCredentials({
  required this.payload,
  String? clientId,
  int? categoryId,
  String? region,
  String? timestamp,
}) : super(
        clientId: clientId,
        categoryId: categoryId,
        region: region,
        timestamp: timestamp,
      );