deviceIdProvider top-level property

FutureProvider<String?> deviceIdProvider
final

Provides a "device ID" which uniquely identifies the user's device

By default, returns null. For real implementations, consider overriding with realAppOverrides.

Implementation

final deviceIdProvider = FutureProvider<String?>((ref) async => null);