DynamicEdgeInsets.symmetric constructor

const DynamicEdgeInsets.symmetric({
  1. Length vertical = const Length(0.0),
  2. Length horizontal = const Length(0.0),
})

Implementation

const DynamicEdgeInsets.symmetric({
  Length vertical = const Length(0.0),
  Length horizontal = const Length(0.0),
})  : left = horizontal,
      top = vertical,
      right = horizontal,
      bottom = vertical;