Caller class
Methods
callServerEndpoint <T > (String endpoint , String method , Map <String , dynamic > args , {bool authenticated = true })
→ Future <T >
Calls a server endpoint method by its name, passing arguments in a map.
Typically, this method is called by generated code.
inherited
callStreamingServerEndpoint <T , G > (String endpoint , String method , Map <String , dynamic > args , Map <String , Stream > streams , {bool authenticated = true })
→ dynamic
Calls a server endpoint method that supports streaming. The streams
parameter is a map of stream names to stream objects. The method will
listen to the streams and send the data to the server.
Typically, this method is called by generated code.
inherited
getEndpointOfType <T extends EndpointRef > ([String ? name ])
→ T
Returns an endpoint of type T. If more than one endpoint of type T
exists, name can be used to disambiguate.
inherited
noSuchMethod (Invocation invocation )
→ dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString ()
→ String
A string representation of this object.
inherited