getClientInboxId method

  1. @override
Future<String?> getClientInboxId()
override

Implementation

@override
Future<String?> getClientInboxId() async {
  final inboxId = await methodChannel.invokeMethod<String>('getClientInboxId');
  return inboxId;
}