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:
除非另有说明,否则本网站上的文档反映的是 Flutter 的最新稳定版本。页面最后更新于 2025-01-30。 查看源代码 或 报告问题。