inset2 method

ContainerBuilder inset2()

inset-2 -->gt; top: 8px, right: 8px, bottom: 8px, left: 8px

Implementation

ContainerBuilder inset2() {
  _positionTop = 8;
  _positionRight = 8;
  _positionBottom = 8;
  _positionLeft = 8;
  return this;
}