activate abstract method

Future<void> activate({
  1. required String token,
  2. bool extractData = true,
})

Activates the sdk with the given token.

token The token string used for activation. extractData A boolean indicating whether to use extract data. True by default.

Returns Void on success. Throws An error of type IDCheckioError if the activation fails.

Implementation

Future<void> activate({required String token, bool extractData = true});