Keeps track of internet connectivity and notifies its listeners when the
internet connection is either lost or regained. For most use cases, use
the concrete FlutterConnectivityMonitor class in the serverpod_flutter
package.
The file uploader uploads files to Serverpods cloud storage. On the server
you can setup a custom storage service, such as S3 or Google Cloud. To
directly upload a file, you first need to retrieve an upload description
from your server. After the file is uploaded, make sure to notify the server
by calling the verifyDirectFileUpload on the current Session object.
The SerializationManager is responsible for creating objects from a
serialization, but also for serializing objects. This class is typically
extended by generated code.
Handles communication with the server. Is typically overridden by
generated code to provide implementations of methods for calling the server.
This is the concrete implementation using the io library
(for Flutter native apps).
Superclass with shared methods for handling communication with the server.
It's overridden i two different versions depending on if the dart:io library
is available.
The StreamingConnection handler manages the web socket connection and its
state. It will automatically reconnect to the server if the connection is
lost. The listener will be notfied whenever the connection state changes
and once every second when counting down to reconnect. The time between
reconnection attempts is specified with retryEverySeconds, default is 5
seconds.
Information about a user. The UserInfo should only be shared with the user
itself as it may contain sensative information, such as the users email.
If you need to share a user's info with other users, use the
UserInfoPublic instead. You can retrieve a UserInfoPublic through the
toPublic() method.