toJson method

CrossmintJsonMap toJson()

Implementation

CrossmintJsonMap toJson() => <String, Object?>{
  'id': id,
  if (chain != null) 'chain': chain,
  if (address != null) 'address': address,
  if (owner != null) 'owner': owner,
  ...raw,
};