VeryfiDart constructor Null safety

VeryfiDart(
  1. String clientId,
  2. String clientSecret,
  3. String username,
  4. String apiKey,
  5. {String apiVersion = 'v8'}
)

Init Veryfi SDK.

Receives a clientId, clientSecret, username, apiKey and apiVersion (by default v8) required to initialize the SDK.

Implementation

VeryfiDart(
    String clientId, String clientSecret, String username, String apiKey,
    {String apiVersion = 'v8'})
    : super(VeryfiCredentials(clientId, clientSecret, username, apiKey),
          apiVersion);