EdgeInsets.all constructor

const EdgeInsets.all(
  1. int value
)

Creates insets where all edges have the same value.

Implementation

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