clearPaddingTestValue method

  1. @Deprecated('Use WidgetTester.view.resetPadding() instead. ' 'Deprecated to prepare for the upcoming multi-window support. ' 'This feature was deprecated after v3.9.0-0.1.pre.')
void clearPaddingTestValue()

Deletes any existing test padding and returns to using the real padding.

Implementation

@Deprecated(
  'Use WidgetTester.view.resetPadding() instead. '
  'Deprecated to prepare for the upcoming multi-window support. '
  'This feature was deprecated after v3.9.0-0.1.pre.'
)
void clearPaddingTestValue() {
  _view.resetPadding();
}