xy static method

EdgeInsets xy(
  1. double xSpacing,
  2. double ySpacing
)

Implementation

static EdgeInsets xy(double xSpacing, double ySpacing) {
  return FxSpacing.only(
      left: xSpacing, right: xSpacing, top: ySpacing, bottom: ySpacing);
}