EdgeInsets.only constructor

const EdgeInsets.only({
  1. required double left,
  2. required double top,
  3. required double right,
  4. required double bottom,
})

Implementation

const EdgeInsets.only({
  required this.left,
  required this.top,
  required this.right,
  required this.bottom,
});