SidesValue<T> constructor

SidesValue<T>({
  1. T? top,
  2. T? left,
  3. T? bottom,
  4. T? right,
})

Implementation

SidesValue({
  this.top,
  this.left,
  this.bottom,
  this.right,
});