AssetConfigParameters constructor

AssetConfigParameters({
  1. BigInt? total,
  2. int? decimals,
  3. bool? defaultFrozen,
  4. String? unitName,
  5. String? assetName,
  6. String? url,
  7. Uint8List? metaData,
  8. Address? managerAddress,
  9. Address? reserveAddress,
  10. Address? freezeAddress,
  11. Address? clawbackAddress,
})

Implementation

AssetConfigParameters({
  this.total,
  this.decimals,
  this.defaultFrozen,
  this.unitName,
  this.assetName,
  this.url,
  this.metaData,
  this.managerAddress,
  this.reserveAddress,
  this.freezeAddress,
  this.clawbackAddress,
});