Deprecate MemoryAllocations in favor of FlutterMemoryAllocations
Summary
#Disposables in pure Dart projects can't use MemoryAllocations in Flutter. So, to be leak-trackable they need a Dart-only class. MemoryAllocations in Flutter is renamed to make the name available to a non-Flutter, Dart project.
Migration guide
#Before:
dart
if (kFlutterMemoryAllocationsEnabled) {
MemoryAllocations.instance.dispatchObjectCreated(
library: 'package:flutter/gestures.dart',
className: '$MultiDragPointerState',
object: this,
);
}After:
dart
if (kFlutterMemoryAllocationsEnabled) {
FlutterMemoryAllocations.instance.dispatchObjectCreated(
library: 'package:flutter/gestures.dart',
className: '$MultiDragPointerState',
object: this,
);
}Timeline
#Landed in version: 3.19.0-2.0.pre
Landed in stable: 3.22.0
References
#Relevant issues:
Was this page's content helpful?
Thank you for your feedback!
Provide detailsThank you for your feedback! Please let us know what we can do to improve.
Provide detailsUnless stated otherwise, the documentation on this site reflects the latest stable version of Flutter. Page last updated on 2024-05-14. View source or report an issue.