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