PaymentsExportedInvoice.deserialize constructor

PaymentsExportedInvoice.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory PaymentsExportedInvoice.deserialize(BinaryReader reader) {
  // Read [PaymentsExportedInvoice] fields.
  final url = reader.readString();

  // Construct [PaymentsExportedInvoice] object.
  final returnValue = PaymentsExportedInvoice(
    url: url,
  );

  // Now return the deserialized [PaymentsExportedInvoice].
  return returnValue;
}