CreateWithdraw constructor

const CreateWithdraw({
  1. required String asset,
  2. required String blockchain,
  3. required String? network,
  4. required double amount,
  5. required String toAddress,
  6. String? message,
})

Implementation

const CreateWithdraw({
  required this.asset,
  required this.blockchain,
  required this.network,
  required this.amount,
  required this.toAddress,
  this.message,
});