enter method

Future<void> enter([
  1. Object? data
])

Enters the presence set for the channel, optionally passing a data payload associated with the presence member. A clientId is required to be present on a channel.

Implementation

Future<void> enter([Object? data]) async {
  assert(_realtimeClientId != null, 'No client id specified on realtime');
  await enterClient(_realtimeClientId!, data);
}