maybeDispatchObjectCreation static method
Implementation
@protected
static void maybeDispatchObjectCreation(Notifier object) {
if (kFlutterMemoryAllocationsEnabled && !object._creationDispatched) {
FlutterMemoryAllocations.instance.dispatchObjectCreated(
library: _flutterFoundationLibrary,
className: '$Notifier',
object: object,
);
object._creationDispatched = true;
}
}