marginCustom method

EdgeInsets marginCustom({
  1. int? horizontal,
  2. int? vertical,
  3. int? top,
  4. int? bottom,
  5. int? left,
  6. int? right,
  7. int? all,
})

Implementation

EdgeInsets marginCustom({
  int? horizontal,
  int? vertical,
  int? top,
  int? bottom,
  int? left,
  int? right,
  int? all
}) {
  return spacingCustom(
    spacing: marginSpacing,
    all: all,
    horizontal: horizontal,
    vertical: vertical,
    top: top,
    left: left,
    right: right,
    bottom: bottom
  );
}