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:
if (kFlutterMemoryAllocationsEnabled) {
MemoryAllocations.instance.dispatchObjectCreated(
library: 'package:flutter/gestures.dart',
className: '$MultiDragPointerState',
object: this,
);
}
After:
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:
Unless stated otherwise, the documentation on this site reflects Flutter 3.35.5. Page last updated on 2025-10-30. View source or report an issue.