AssetParameters constructor

AssetParameters({
  1. required int decimals,
  2. required String creator,
  3. required BigInt total,
  4. String? clawback,
  5. bool? defaultFrozen,
  6. String? freeze,
  7. String? manager,
  8. String? name,
  9. String? nameB64,
  10. String? reserve,
  11. String? unitName,
  12. String? unitNameB64,
  13. String? url,
  14. String? urlB64,
  15. String? metadataHash,
})

Implementation

AssetParameters({
  required this.decimals,
  required this.creator,
  required this.total,
  this.clawback,
  this.defaultFrozen,
  this.freeze,
  this.manager,
  this.name,
  this.nameB64,
  this.reserve,
  this.unitName,
  this.unitNameB64,
  this.url,
  this.urlB64,
  this.metadataHash,
});