ping method

Future<void> ping()

Implementation

Future<void> ping() async {
  NLogger.d("Testing native connection...");
  await _nudgeCoreV2NativeServices.invokeNativeMethod('ping', {
    'message': 'Hello from Flutter!',
  });
  NLogger.d("Native connection test completed.");
}