getMint method

Mint? getMint()

Implementation

Mint? getMint() {
  if (mints.isEmpty) return null;
  return Mint(mints.map((e) => e.toMintInfo()).toList());
}