RefreshCachedDevicesUseCase typedef

RefreshCachedDevicesUseCase = Future<void> Function(BuildContext context)

Use case for refreshing currently logged-in user's devices

Apps should provide their implementation of this refresh use case, to refresh the list returned in cachedDeviceFamily.

Implementation

typedef RefreshCachedDevicesUseCase = Future<void> Function(
  BuildContext context,
);