safeAreaWithPaddingAndBottom method

EdgeInsets safeAreaWithPaddingAndBottom(
  1. double bottom
)

safe area method

Implementation

EdgeInsets safeAreaWithPaddingAndBottom(double bottom) {
  return MediaQuery.of(context).padding + EdgeInsets.only(bottom: bottom);
}