WidgetTester constructor

WidgetTester({
  1. int screenWidth = 80,
  2. int screenHeight = 24,
  3. bool enableZones = false,
})

Creates a new tester.

enableZones is a deprecated no-op kept for compatibility.

Implementation

WidgetTester({
  this.screenWidth = 80,
  this.screenHeight = 24,
  bool enableZones = false,
}) {
  // Legacy no-op retained for source compatibility.
  if (enableZones) {}
}