setMultipleChangeNotifiersLibConfig function

void setMultipleChangeNotifiersLibConfig(
  1. LibConfig args
)

Change the LibConfig for the multiple_change_notifiers library.

This package uses some parts of the Flutter SDK. The necessary source code was copied from the Flutter SDK and pasted into this package. Nearly all parts of the Flutter SDK heavily depend on each other, so only the required code was copied and the parts that are not really necessary for the functionality of said code were removed and replaced with the functions and members from LibConfig. By default the LibConfig is set to const DartSdkLibConfig().

When using this package with the Flutter SDK, you should use this function to set the LibConfig to FlutterSdkLibConfig.

Implementation

void setMultipleChangeNotifiersLibConfig(LibConfig args) {
  FlutterSdkUtils.instance.args = args;
}