safeAreaTestValue property

void safeAreaTestValue=(EdgeInsets safeArea)

convenience wrapper for configuring the paddingTestValue

paddingTestValue requires you creating your own class that implements WindowPadding

safeArea specifies the safe area insets for all 4 edges that you wish to simulate

Implementation

set safeAreaTestValue(EdgeInsets safeArea) {
  paddingTestValue = _FakeWindowPadding(
    bottom: safeArea.bottom,
    left: safeArea.left,
    right: safeArea.right,
    top: safeArea.top,
  );
}