ageVerificationProvider top-level property

StateNotifierProviderFamily<AgeVerificationNotifier, AgeVerificationState, Map<String, dynamic>> ageVerificationProvider
final

Implementation

final ageVerificationProvider = StateNotifierProviderFamily<AgeVerificationNotifier, AgeVerificationState, Map<String, dynamic>>(
      (ref, params) => AgeVerificationNotifier(
    uniqueId: params['uniqueId'] as String,
    onCompletion: params['onCompletion'] as VoidCallback?,
  ),
);