ArnaEdgeInsets.symmetric constructor

const ArnaEdgeInsets.symmetric(
  1. double horizontal,
  2. double vertical
)

Creates insets with symmetrical vertical and horizontal offsets.

Implementation

const ArnaEdgeInsets.symmetric(double horizontal, double vertical)
    : super.only(
        start: horizontal,
        top: vertical,
        end: horizontal,
        bottom: vertical,
      );