PlusProviderInherited<T> constructor

const PlusProviderInherited<T>({
  1. Key? key,
  2. required Widget child,
  3. required T provider,
})

Implementation

const PlusProviderInherited(
    {Key? key, required Widget child, required this.provider})
    : super(key: key, child: child);