getCpmToken method

Future<AccountCpmToken> getCpmToken({
  1. required String cpmToken,
})

Implementation

Future<AccountCpmToken> getCpmToken({
  required String cpmToken,
}) async {
  return await invokeMethod<AccountCpmToken>(
    (j) => AccountCpmToken.fromJson(j),
    'getCpmToken',
    {
      'env': this.env.index,
      'accessToken': this.accessToken,
      'cpmToken': cpmToken,
    },
  );
}