setupAESAuth method
void
setupAESAuth({
- String method = 'GET',
- required String secret,
- String referer = "player.vidinfra.com",
- AESAuthOptions? options,
Implementation
void setupAESAuth({
String method = 'GET',
required String secret,
String referer = "player.vidinfra.com",
AESAuthOptions? options,
}) => aesAuthHeaders = AESAuth.generateHeaders(
secret: secret,
method: method,
referer: referer,
options: options,
);