inset0 method

ContainerBuilder inset0()

inset-0 -->gt; top: 0, right: 0, bottom: 0, left: 0

Implementation

ContainerBuilder inset0() {
  _positionTop = 0;
  _positionRight = 0;
  _positionBottom = 0;
  _positionLeft = 0;
  return this;
}