toMap method

Map<String, dynamic> toMap()

Converts instance to a map.

Implementation

Map<String, dynamic> toMap() {
  return {
    "destinationURL": destinationURL.toString(),
    "purchaser": purchaser,
    "sourceDescription": sourceDescription,
    "sourceIdentifier": sourceIdentifier,
  };
}