TestWidgetsFlutterBinding constructor Null safety

TestWidgetsFlutterBinding()

Constructor for TestWidgetsFlutterBinding.

This constructor overrides the debugPrint global hook to point to debugPrintOverride, which can be overridden by subclasses.

Implementation

TestWidgetsFlutterBinding() : _window = TestWindow(window: ui.window) {
  debugPrint = debugPrintOverride;
  debugDisableShadows = disableShadows;
}