Check if NFC is enabled on the device
Future<bool> isNfcEnabled() async { try { return await _plugin.isNfcEnabled(); } catch (e) { print('Error checking NFC enabled status: $e'); return false; } }