ProvidersPlus constructor

const ProvidersPlus({
  1. Key? key,
  2. required List<ProviderPlus> providers,
  3. required Widget child,
})

Implementation

const ProvidersPlus({
  Key? key,
  required this.providers,
  required this.child,
}) : super(key: key);