AccountCpmToken constructor

AccountCpmToken({
  1. required String cpmToken,
  2. required Account account,
  3. UserTransaction? transaction,
  4. required List<String> scopes,
  5. DateTime? expiresAt,
  6. Map<String, dynamic>? metadata,
})

Implementation

AccountCpmToken({
  required this.cpmToken,
  required this.account,
  this.transaction,
  required this.scopes,
  this.expiresAt,
  this.metadata,
});