ADAOffchainMetadata constructor

ADAOffchainMetadata({
  1. required String name,
  2. required String description,
  3. String? ticker,
  4. String? url,
  5. int? decimals,
})

Implementation

ADAOffchainMetadata({
  required this.name,
  required this.description,
  this.ticker,
  this.url,
  this.logo,
  this.decimals,
});