debugLazyUpdate method
Implementation
@override
void debugLazyUpdate(VoidCallback callback, [String? debugInfo]){
/// 安全调用 update 并进行 debug 计数
WidgetsBinding.instance.addPostFrameCallback((Duration dt){
debugUpdate(callback, debugInfo);
});
}