EdgeInsets.verticalTopBottom constructor

const EdgeInsets.verticalTopBottom(
  1. double top,
  2. double bottom
)

Top and bottom

Implementation

const EdgeInsets.verticalTopBottom(double top, double bottom)
    : this.only(top: top, bottom: bottom);