DynamicEdgeInsets.only constructor

const DynamicEdgeInsets.only({
  1. Length? left = const Length(0.0),
  2. Length? top = const Length(0.0),
  3. Length? right = const Length(0.0),
  4. Length? bottom = const Length(0.0),
})

Implementation

const DynamicEdgeInsets.only({
  this.left = const Length(0.0),
  this.top = const Length(0.0),
  this.right = const Length(0.0),
  this.bottom = const Length(0.0),
});