getCustomerEndUserId static method
Implementation
static Future<String> getCustomerEndUserId({
  required String connectionId,
}) async {
  final result = await _channel.invokeMethod('getCustomerEndUserId', {
    'connectionId': connectionId,
  });
  ExceptionHandler.checkException(result);
  return result;
}