EdgeInsetsDirectional.only constructor

const EdgeInsetsDirectional.only({
  1. double start = 0,
  2. double top = 0,
  3. double end = 0,
  4. double bottom = 0,
})

only API.

Implementation

const EdgeInsetsDirectional.only({
  this.start = 0,
  this.top = 0,
  this.end = 0,
  this.bottom = 0,
});