SoftwareKeyboardHeightSimulator constructor

const SoftwareKeyboardHeightSimulator({
  1. Key? key,
  2. required WidgetTester tester,
  3. bool isEnabled = true,
  4. bool enableForAllPlatforms = false,
  5. double keyboardHeight = _defaultKeyboardHeight,
  6. bool animateKeyboard = false,
  7. required Widget child,
})

Implementation

const SoftwareKeyboardHeightSimulator({
  super.key,
  required this.tester,
  this.isEnabled = true,
  this.enableForAllPlatforms = false,
  this.keyboardHeight = _defaultKeyboardHeight,
  this.animateKeyboard = false,
  required this.child,
});