only method

  1. @override
T only({
  1. double? top,
  2. double? bottom,
  3. double? left,
  4. double? right,
  5. double? start,
  6. double? end,
})
override

Implementation

@override
T only({
  double? top,
  double? bottom,
  double? left,
  double? right,
  double? start,
  double? end,
}) {
  return builder(
    SpacingDto.only(
      top: top,
      bottom: bottom,
      left: left,
      right: right,
      start: start,
      end: end,
    ),
  );
}