Token constructor

Token({
  1. required String tokenId,
  2. required Object tokenType,
  3. required BigInt atoms,
  4. required bool isMintBaton,
  5. int? entryIdx,
})

Implementation

Token({
  required this.tokenId,
  required this.tokenType,
  required this.atoms,
  required this.isMintBaton,
  this.entryIdx,
});