clientOperations property
Client operations declared by the plugin.
Implementation
@override
Iterable<AuthClientOperationDescriptor> get clientOperations => endpoints.map(
(endpoint) => AuthClientOperationDescriptor(
id: endpoint.id,
method: endpoint.method,
path: endpoint.path,
mount: endpoint.mount,
serverOnly: endpoint.serverOnly,
),
);