EdgeInsets.all constructor

const EdgeInsets.all(
  1. int v
)

Implementation

const EdgeInsets.all(int v)
    : top = v,
      right = v,
      bottom = v,
      left = v;