CpmToken constructor

CpmToken({
  1. required String cpmToken,
  2. required Account account,
  3. UserTransactionWithTransfers? transaction,
  4. required List<String> scopes,
  5. required DateTime expiresAt,
  6. required Map<String, dynamic> metadata,
  7. String? strategy,
  8. String? couponId,
})

Implementation

CpmToken({
  required this.cpmToken,
  required this.account,
  this.transaction,
  required this.scopes,
  required this.expiresAt,
  required this.metadata,
  this.strategy,
  this.couponId,
});