RequestDidPowerUp constructor

RequestDidPowerUp({
  1. required String claimantDid,
  2. required List<StdCoin> amount,
  3. required String powerUpProof,
  4. required String uuid,
  5. required String encryptionKey,
})

Implementation

RequestDidPowerUp({
  required this.claimantDid,
  required this.amount,
  required this.powerUpProof,
  required this.uuid,
  required this.encryptionKey,
}) : assert(amount.isNotEmpty);