const EdgeInsets.all(double value)

Creates insets where all the offsets are value.

Source

const EdgeInsets.all(double value)
    : left = value, top = value, right = value, bottom = value;