ContactsExportContactToken.deserialize constructor

ContactsExportContactToken.deserialize(
  1. BinaryReader reader
)

Deserialize.

Implementation

factory ContactsExportContactToken.deserialize(BinaryReader reader) {
  // Construct [ContactsExportContactToken] object.
  final returnValue = ContactsExportContactToken();

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