DAQProvider.withConfig constructor
Factory constructor to create provider with configuration
Implementation
factory DAQProvider.withConfig({
Key? key,
required DAQConfig config,
required Widget child,
}) {
final cache = DAQCache(config: config);
return DAQProvider(key: key, daqCache: cache, child: child);
}