EdgeInsetsCSS.only constructor

const EdgeInsetsCSS.only({
  1. SizeCSS? left,
  2. SizeCSS? top,
  3. SizeCSS? right,
  4. SizeCSS? bottom,
})

Implementation

const EdgeInsetsCSS.only({
  SizeCSS? left,
  SizeCSS? top,
  SizeCSS? right,
  SizeCSS? bottom,
}) : super(
       left: left,
       top: top,
       right: right,
       bottom: bottom,
       type: _TypeSizeCSS.value,
     );