setInsets abstract method

void setInsets({
  1. required int top,
  2. required int left,
  3. required int bottom,
  4. required int right,
})

Apply insets (in pixels) to the screen. If inset is not zero, search in the cut-off area will not be performed.

top Top inset. left Left inset. bottom Bottom inset. right Right inset.

Implementation

void setInsets({
  required core.int top,
  required core.int left,
  required core.int bottom,
  required core.int right,
});