setupAESAuth method

void setupAESAuth({
  1. String method = 'GET',
  2. required String secret,
  3. String referer = "player.vidinfra.com",
  4. 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,
);