serialize method

  1. @override
Map<String, dynamic> serialize()
override

Serializes the object to a map.

Implementation

@override
Map<String, dynamic> serialize() {
  return {
    "discriminator": _Utils.discriminator,
    "mint": mint,
    "fanout": fanout,
    "tokenAccount": tokenAccount,
    "totalInflow": totalInflow,
    "lastSnapshotAmount": lastSnapshotAmount,
    "bumpSeed": bumpSeed
  };
}