responsiveSafe property

EdgeInsets get responsiveSafe

Scale EdgeInsets responsively using safe area

Implementation

EdgeInsets get responsiveSafe {
  return EdgeInsets.fromLTRB(
    left.wSafe,
    top.hSafe,
    right.wSafe,
    bottom.hSafe,
  );
}