TokenInfoMerchant constructor

TokenInfoMerchant({
  1. required TokenType type,
  2. required String token,
  3. AccountCpmToken? cpmToken,
  4. Cashtray? cashtray,
})

Implementation

TokenInfoMerchant({
  required TokenType type,
  required String token,
  this.cpmToken,
  this.cashtray,
}) : super(type: type, token: token);