TronRequestCreateAssetIssue constructor

TronRequestCreateAssetIssue({
  1. required TronAddress ownerAddress,
  2. required String name,
  3. required String abbr,
  4. BigInt? totalSupply,
  5. int? num,
  6. BigInt? startTime,
  7. BigInt? endTime,
  8. String? description,
  9. String? url,
  10. BigInt? freeAssetNetLimit,
  11. BigInt? publicFreeAssetNetLimit,
  12. List<Map<String, BigInt>>? frozenSupply,
  13. int? precision,
  14. required int trxNum,
  15. BigInt? publicFreeAssetNetUsage,
  16. BigInt? publicLatestFreeNetTime,
  17. bool visible = true,
})

Implementation

TronRequestCreateAssetIssue(
    {required this.ownerAddress,
    required this.name,
    required this.abbr,
    this.totalSupply,
    this.num,
    this.startTime,
    this.endTime,
    this.description,
    this.url,
    this.freeAssetNetLimit,
    this.publicFreeAssetNetLimit,
    this.frozenSupply,
    this.precision,
    required this.trxNum,
    this.publicFreeAssetNetUsage,
    this.publicLatestFreeNetTime,
    this.visible = true});