Credentials constructor

Credentials({
  1. required String apiKey,
})

Creates an instance of Credentials with the given apiKey.

The apiKey parameter is required and must not be null.

Implementation

Credentials({
  required this.apiKey,
}) {}